posts - 2,comments - 1,trackbacks - 0
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;


public class RuntimeComplie {
    
public static void main(String[] args) throws IOException, InterruptedException {
        Process p 
= Runtime.getRuntime().exec("cmd /c javac TestB.java & java TestB");
        InputStream is 
= p.getInputStream();
        BufferedReader br 
= new BufferedReader(new InputStreamReader(is));
        String line 
= null;
        
while((line=br.readLine()) !=null{
            System.out.println(line);
        }

        br.close();
    }

}

posted on 2011-07-02 12:31 Huicpc217 阅读(289) 评论(0)  编辑 收藏 引用 所属分类: JAVA

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理