반응형 Java30 자바 Class 를 ByteArray로 변환하기 일단, 자료를 저장하기 위해, Class A라는것을 만들었습니다. 자료를 담아야할 그릇이 있어서. 지금 이걸 bytearray로 이용해서 다른쪽 컴터로 보낸다음 거기서 열어봐야되는데.분명 예전에 배울때, serialize 하고 했던것 같아서 보고 있었는데, 제 생각에는 소스가 길었던걸로 생각했는데, 딱 두줄이네요 자바 내에서도 기본적인 기능이 있지만. 역시나 구글신https://stackoverflow.com/questions/2836646/java-serializable-object-to-byte-array The best way to do it is to use ApacheUtils:To Serialize:byte[] data = SerializationUtils.serialize(yourObject.. 2014. 5. 2. java.lang.ClassCastException: org.apache.catalina.core.DefaultInstanceManager cannot be cast to org.apache.tomcat.InstanceManager 이것저것을 하다가 이클립스에 메이븐을 이용해서 톰켓에 Deploy하던중 생긴 문제입니다. Source: http://fanshuyao.iteye.com/blog/1688314 중국어는 못하지만, 영어로 Thank you 라고 남겨놓고 싶었으나, 답글도 어떻게 다는지 모르겠네요 답은 간단합니다. WEB-INF/web.xml 2014. 3. 22. Erlang http://www.tryerlang.org/ http://www.tryerlang.org/ Introduction Erlang is a programming language created in the Computer Science lab at Ericsson in Sweden in the late 1980s. The above prompt represents an Erlang shell, where you can try the full power of Erlang (well, sort of). To start this tutorial please type ok.. Please note that in Erlang every instruction must be terminated by a DOT (.), and to have it evaluated t.. 2013. 9. 6. Java JMF tail: cannot open `+309' for reading: No such file or director 진짜 구글에 없는게 없네요 ... Solution is here: http://forums.sun.com/thread.jspa?threadID=5368614&tstart=1 First rename the .bin file to .zip Then with any tool, decompress the zip. It gives a comment that the beginning of the file has bytes that are not part of the zip (this is the script), but it decompress it correctly. It places the file in its subdirectory. Then rename the file again to .bin, and exe.. 2013. 2. 27. sqlite insert 속도 증가시키기(java) 만약 지금 Java를 이용해서 sqlite를 사용중이시고 데이터를 insert 중이신데 속도가 느리다그런데 웹을 검색해보면 트랜잭션 하는데, 전부다 안드로이드 이야기 이다. 그러시다면 제가 포스팅한 주제를 제대로 찾아오셨습니다. 안드로이드에서 sqlite 쪽 보시면 명시적 트랜잭션 ? 이라든지 등등 많은데 자바에서는 이렇게 표현하시면 되실듯 하십니다.(제가 이것때문에 아주 어휴) Connection sqlite_conn = DriverManager.getConnection("jdbc:sqlite:test.db"); sqlite_conn.setAutoCommit(false);분기문[이곳에 insert문] sqlite_conn.setAutoCommit(true); 2012. 10. 3. 자바 쓰레드간 통신 주고 받는 방법 지금 모좀 하는데, 자바 공부할때마다 대학교에서부터 궁금했던건데 학교에서 배운건 싱크로나이즈 동기화 밖에 안배웠습니다. 물론 전역 변수를 선언해버리고서 해결하는 방법이 있습니다.(예전에 과제할때 이 방법을 많이 사용했습니다.)(근데 이건 이렇게 하는게 아니라고 안좋다고 들었습니다.) 그런데 이렇게 안하고도 공식적인 방법으로 더 할수 있는 방법이 있습니다. 물론 여기에는 소스는 안올려놓고, 두개의 포스트를 추천 드리겠습니다. http://javacan.tistory.com/64 파이프를 사용해서 쓰레드간 통신 하는 방법 입니다. 파이프를 처음 사용하시는 분들은 API를 꼭 참고 하시기 바랍니다.제가 여기서 많이 이상한짓을 많이해서 제가 지금 정확히는 기억안나는데 파이프로 전송할수 있는 범위는 0~255 만.. 2012. 7. 17. 이전 1 2 3 4 5 다음 반응형