|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
再说第三点:我并没有提到服务器也要整合,然后是IDE,一个好的IDE能够200%提高开发的速度,就说图形方面:你是经过简单托拽和点击就能实现功能好那。实行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的一些认识。我选择java,是因为他语法简单,功能强大,从web,到桌面,到嵌入式,无所不能。但当我进一步了解了java后,感叹,java原来也有许多缺点。 |
|