JAVA积累
simalinxu
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
JAVA直接本地HTML和TXT文件。
/** * 直接打开本地文件 * */ private void openFile(String localFileUrl) { String filename = "openFile.bat"; File file = new File(filename); try { //创建本地批处理文件 FileOut...2013-01-25 10:23:18 · 249 阅读 · 0 评论 -
Java的Servlet调用服务器上的html文件直接在客户端打开
/** * The doGet method of the servlet. * * This method is called when a form has its tag value method equals to get. * * @param request the request send by the client to the server...2013-01-25 10:24:40 · 711 阅读 · 0 评论
分享