|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
自己的整个学习思路完全被老师的讲课思路所牵制,这样几节课听下来,恐怕自己的见解都应该是书里的知识点了,根本谈不上自身发现问题,分析问题,和解决问题能力的切实提高。实行packagetest;
/***Addonesentenceclasssummaryhere.*Addclassdescriptionhere.**@authorlxx*@version1.0,2004-11-16*/publicclassTestCmd{publicTestCmd(){}/*publicvoidmain(Stringargs[]){try{Processprocess=Runtime.getRuntime().exec("cmd.exe/cstarthttp://www.csdn.net");//登录网站Processprocess=Runtime.getRuntime().exec("cmd.exe/cstartping10.144.98.100");//挪用Ping命令}catch(Exceptione){e.printStackTrace();}}}*///在项面前目今创建一个名为hello的文件夹publicstaticvoidmain(String[]args){System.out.println(System.getProperty("user.dir"));createFolder("hello");}
privatestaticvoidcreateFolder(StringfolderName){Stringtemp=System.getProperty("user.dir")+java.io.File.separator+folderName;java.io.Filef=newjava.io.File(temp);f.mkdirs();}
}
在Java程序中猎取以后运转程序的路径
importjava.io.*;
publicclassTest{
publicstaticvoidmain(String[]args){
Filedirectory=newFile(".");
try{
FilenewPath=newFile(directory.getCanonicalPath()+"NewFolder");
newPath.mkdir();
}catch(Exceptionexp)
{
exp.printStackTrace();
}
}
}
//Filedirectory=newFile(".");
//directory.getCanonicalPath();获得以后路径
在Jsp页面中挪用Ping命令---PingIP.jsp
<%@pagelanguage="java"contentType="text/html;charset=gb2312"import="java.io.*"%><!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><title>PingIP测试页面</title></head>
<body><divalign="center"><h2>PingIP测试页面</h2></div>
<%Runtimeruntime=Runtime.getRuntime();Processprocess=null;Stringline=null;InputStreamis=null;InputStreamReaderisr=null;BufferedReaderbr=null;Stringip="www.ckuyun.com.cn";//待Ping的地点try{process=runtime.exec("ping"+ip);is=process.getInputStream();isr=newInputStreamReader(is);br=newBufferedReader(isr);out.println("<pre>");while((line=br.readLine())!=null){out.println(line);out.flush();}out.println("</pre>");is.close();isr.close();br.close();}catch(IOExceptione){out.println(e);runtime.exit(1);}%>
</body></html>
有了这样一个呼声:让java代替C语言成为基本语言。这些足以说明java简单易学的这个优点。其次,java的功能强大,前面我也提到了,EJB3.0的推出使java成为了大型项目的首选。 |
|