'Programming' 카테고리의 글 목록
본문 바로가기

Programming67

#Java Code - HTML to Java 미완 public static String replaceHTMLCode(String str) { String result = str; result = str.replaceAll("", ">"); result = str.replaceAll(" ", " "); result = str.replaceAll("!", "!"); result = str.replaceAll("\"", """); result = str.replaceAll("#", "#"); result = str.replaceAll("$", "$"); result = str.replaceAll("%", "&#37"); result = str.replaceAll("&", "&"); result = str.replaceAll("'", "&#39"); resul.. 2021. 4. 20.
#SPARQL - Virtuoso 설치, 적재, 삭제 안녕하세요~ 이번 주제는 Linked Open Data(LOD)와 Data를 저장 시키는 저장소! Virtuoso를 소개해드립니다~ 많은 분들이 Oracle, Mysql, Maria, Postgre 등등을 사용하시겠지만 이번 기회에 Virtuoso에 대해 알게 되어 공유합니다~ WikiPedia Virtuoso 유니버설 서버 Virtuoso Universal Server 는 기존의 관계형 데이터베이스 관리 시스템 (RDBMS), 객체 관계형 데이터베이스 (ORDBMS), 가상 데이터베이스 , RDF , XML , 자유 텍스트 , 웹 애플리케이션 서버 및 파일 서버 의 기능을 결합한 미들웨어 및 데이터베이스 엔진 하이브리드입니다. 단일 시스템에서 기능. Virtuoso는 앞서 언급 한 각 기능 영역에 대한.. 2021. 4. 16.
#Java Exception - Publishing failed with multiple errorsFile not found: ~.class svn에서 프로젝트를 Check Out 해서 Was를 띄웠는데 이런 오류가 나타나네요. org,springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxx' defined in file Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name xxx Caused by: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class xxx Caused by: java.lang.ClassNotFoundExcepti.. 2021. 4. 2.
#Tip - Java 디컴파일러 JD-GUI 설치, 사용 war, jar, 등등 클래스 파일을 디컴파일하여 .java 파일로 볼 수 있는 디컴파일러 JD-GUI를 소개해드립니다. java-decompiler.github.io/ Java Decompiler The “Java Decompiler project” aims to develop tools in order to decompile and analyze Java 5 “byte code” and the later versions. JD-GUI is a standalone graphical utility that displays Java source codes of “.class” files. You can browse the reco java-decompiler.github.io 위의 링크를 들어가줍니다! D.. 2021. 4. 1.