'프로그래밍/JAVA'에 해당되는 글 16건

  1. 2013.07.11 리눅스 상에서 jar 파일 만들기
  2. 2012.11.14 JTable에서 열(row) 삭제하기
  3. 2012.10.12 [mysql]
  4. 2012.09.12 Table 만들기
  5. 2012.09.12 Border
  6. 2012.09.11 MFC와 같이 group 묶어주는 titled border
  7. 2012.09.07 string to integer, integer to string
  8. 2012.09.07 Choice ItemListener
  9. 2012.09.07 JTextArea에 글 넣기
  10. 2012.08.30 Window Builder

출처: http://stackoverflow.com/questions/3512603/compiling-multiple-packages-using-the-command-line-in-java (compiling multiple packages using the command line in Java)

Hi i have been using an IDE but now I need to run and compile from the command line.

The problem is that I have multiple packages and I have tried to find the answer but nothing has worked.

So I have

src/
  Support/ (.java files)
  Me/ (.java files) 
  Wrapers/ (.java files)  

Do you know how to compile everything with javac?

share|improve this question

This should do it (may require additional classpath elements via the -cp command line switch):

javac Support/*.java Me/*.java Wrapers/*.java

But if your build process gets more complex (and it will!), you should look into using Apache Ant for build automation.

share|improve this answer

출처: http://blog.naver.com/PostView.nhn?blogId=jazz1234k&logNo=40101348073 (jar 파일 만들기, 실행하기 KR)


출처: https://coderwall.com/p/ssuaxa (jar 파일 만들기, 실행하기 EN)


$ javac HelloWorld.java $ echo Main-Class: HelloWorld > MANIFEST.MF $ jar cvmf MANIFEST.MF helloworld.jar HelloWorld.class

$ java -jar helloworld.jar


출처: https://coderwall.com/p/ssuaxa (jar 파일 만들기, 실행하기 EN)


출처: https://blogs.oracle.com/olaf/entry/jdev_including_a_classpath_in (MANIFEST.MF 파일 만들 때)


----------------------------------------------------------------------------


$ javac -d bin src/.../data/*.java src/.../RNASim/*.java src/.../utils/*.java

를 이용하여 컴파일 후


$ vi MANIFEST.MF 

하여


Class-Path: /home/njkoo/program/RNAseqSim/bin/ /home/njkoo/program/RNAseqSim/includes/commons-math-2.2.jar

Main-Class: edu.unc.csbio.RNASim.MainCmdline


와 같이 입력 후 저장


$ jar cvmf MANIFEST.MF RNAseqSim-version.jar bin/.../data/*.class bin/.../RNASim/*.class bin/.../utils/*.class

를 이용하여 jar 파일을 생성하면


$ java -jar RNAseqSim-version.jar 

명령어를 이용하여 프로그램 실행 가능


혹은 jar 파일을 만들지 않고


$java -cp ./bin/:./includes/commons-math-2.2.jar edu.unc.csbio.RNASim.MainCmdline config.txt


$java -cp /home/njkoo/program/RNAseqSim/bin/:/home/njkoo/program/RNAseqSim/includes/commons-math-2.2.jar edu.unc.csbio.RNASim.MainCmdline config.txt


와 같은 명령어를 그냥 사용하여도 실행 가능.



'프로그래밍 > JAVA' 카테고리의 다른 글

JTable에서 열(row) 삭제하기  (0) 2012.11.14
[mysql]  (0) 2012.10.12
Table 만들기  (0) 2012.09.12
Border  (0) 2012.09.12
MFC와 같이 group 묶어주는 titled border  (0) 2012.09.11
Posted by halloRa
,

출처: http://www.daniweb.com/software-development/java/threads/26217/deleting-rows-from-a-jtable


((DefaultTableModel)테이블명.getModel()).removeRow(row_index);

'프로그래밍 > JAVA' 카테고리의 다른 글

리눅스 상에서 jar 파일 만들기  (0) 2013.07.11
[mysql]  (0) 2012.10.12
Table 만들기  (0) 2012.09.12
Border  (0) 2012.09.12
MFC와 같이 group 묶어주는 titled border  (0) 2012.09.11
Posted by halloRa
,

[mysql]

프로그래밍/JAVA 2012. 10. 12. 15:58

mysql 작업 시 query를 날려 getResultSet()하였을 때

resultSet이 empty인 것을 확인하기 위한 방법


boolean empty = true;

while(rSet.next()){

...

empty = false;

}


if(empty) { ... }

'프로그래밍 > JAVA' 카테고리의 다른 글

리눅스 상에서 jar 파일 만들기  (0) 2013.07.11
JTable에서 열(row) 삭제하기  (0) 2012.11.14
Table 만들기  (0) 2012.09.12
Border  (0) 2012.09.12
MFC와 같이 group 묶어주는 titled border  (0) 2012.09.11
Posted by halloRa
,

출처: http://yagi815.tistory.com/1015


셀의 넓이 및 정렬

header 설정 등 모든 것에 대한 설명이 있음.

'프로그래밍 > JAVA' 카테고리의 다른 글

JTable에서 열(row) 삭제하기  (0) 2012.11.14
[mysql]  (0) 2012.10.12
Border  (0) 2012.09.12
MFC와 같이 group 묶어주는 titled border  (0) 2012.09.11
string to integer, integer to string  (0) 2012.09.07
Posted by halloRa
,

Border

프로그래밍/JAVA 2012. 9. 12. 13:27
출처:  http://blog.naver.com/PostView.nhn?blogId=ssalzibi&logNo=40135504923&categoryNo=30&viewDate=&currentPage=1&listtype=0


'프로그래밍 > JAVA' 카테고리의 다른 글

[mysql]  (0) 2012.10.12
Table 만들기  (0) 2012.09.12
MFC와 같이 group 묶어주는 titled border  (0) 2012.09.11
string to integer, integer to string  (0) 2012.09.07
Choice ItemListener  (0) 2012.09.07
Posted by halloRa
,

출처: http://www.java2s.com/Code/Java/Swing-JFC/Anexampleofusingatitledborderonalabel.htm


JPanel panel = new JPanel();


TitledBorder titledborder = new TitledBorder("Console");

panel.setBorder(titledborder);

'프로그래밍 > JAVA' 카테고리의 다른 글

Table 만들기  (0) 2012.09.12
Border  (0) 2012.09.12
string to integer, integer to string  (0) 2012.09.07
Choice ItemListener  (0) 2012.09.07
JTextArea에 글 넣기  (0) 2012.09.07
Posted by halloRa
,

출처: http://blog.naver.com/mini_wor1d?Redirect=Log&logNo=150141298003


int A;

String B;


// int to string

B = Integer.toString(A);


// string to int

A = Integer.parserInt(B);

'프로그래밍 > JAVA' 카테고리의 다른 글

Border  (0) 2012.09.12
MFC와 같이 group 묶어주는 titled border  (0) 2012.09.11
Choice ItemListener  (0) 2012.09.07
JTextArea에 글 넣기  (0) 2012.09.07
Window Builder  (0) 2012.08.30
Posted by halloRa
,

출처: http://www.itdi.co.kr/onuri/bbs/board.php?bo_table=03_3&wr_id=12&page=4


출처: http://raoo.tistory.com/entry/ItemListener%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%9C-%EC%98%88%EC%A0%9C%EC%9D%B4%EB%B2%A4%ED%8A%B8%EC%97%90-%EA%B4%80%ED%95%9C-%EC%98%88%EC%A0%9C-%EC%B4%9D%EB%A7%9D%EB%9D%BC


출처: http://dojeun.egloos.com/318591



public ExampleItemListener implements ItemListener{


public void itemStateChanged(ItemEvent e){

// 이 곳에 아이템이 변할 때마다 변하는 상태에 대해 기술

}


}

Posted by halloRa
,

출처: http://hay6308.tistory.com/


JTextArea text_area = new JTextArea();

text_area.append("A");

text_area.append("B");



[예시]

A

B



하고 보이게 된다.

'프로그래밍 > JAVA' 카테고리의 다른 글

string to integer, integer to string  (0) 2012.09.07
Choice ItemListener  (0) 2012.09.07
Window Builder  (0) 2012.08.30
JFileChooser, window 열기 창, 저장 창, 파일 선택 창  (0) 2012.08.30
프레임 종료 코드  (0) 2012.08.30
Posted by halloRa
,

출처: http://forum.falinux.com/zbxe/?_filter=search&mid=lecture_tip&search_target=title&search_keyword=window+builder&document_srl=567520 (window builder 설치)


출처: http://forum.falinux.com/zbxe/?_filter=search&mid=lecture_tip&search_target=title&search_keyword=window+builder&document_srl=567929 (기본 사용법)


출처: http://forum.falinux.com/zbxe/?_filter=search&mid=lecture_tip&search_target=title&search_keyword=window+builder&document_srl=568497 (기본 예제)

'프로그래밍 > JAVA' 카테고리의 다른 글

Choice ItemListener  (0) 2012.09.07
JTextArea에 글 넣기  (0) 2012.09.07
JFileChooser, window 열기 창, 저장 창, 파일 선택 창  (0) 2012.08.30
프레임 종료 코드  (0) 2012.08.30
파일 읽기  (0) 2012.08.30
Posted by halloRa
,