- 浏览: 205412 次
- 性别:
- 来自: 北京
最新评论
-
o竹林雨o:
谢啦,楼主,顶
tomcat server.xml 编码修改 -
test_lockxxx:
方法4: 缓冲整个文件 ?
为什么要缓存整个文件?
Buff ...
java io性能分析
文章列表
Struts2
- 博客分类:
- Struts 2.x
http://darkranger.iteye.com/category/59243
http://duyouhua1214.iteye.com/blog/523661
1.
http://angkor.iteye.com/blog/410673
2.
http://pichcar.iteye.com/blog/554714
JSP代码:
<form id="settings" name="settings" action="#" method="post">
<table class="tableborder" cellSpacing="0" cellPadding="0"
width="100%" border="0">
<tbody>
...
var courseObj = null;
function loadCourse() {
new Ajax.Request("getCourse.do", {
method :"get",
onSuccess : function(resp) {
courseObj = resp.responseText.evalJSON();
fillCourse();
}
});
}
/*
* 填充分类和产品
*/
function fillCourse() ...
http://www.iteye.com/news/17932
<html>
<head>
<title>hello</title>
</head>
<body>
<!--
本注释在页面源文件中可以被看到
-->
<%--
本注释在页面源文件中不可见
--%>
</body>
</html&g ...
LoaderServerListener
- 博客分类:
- XML
public class LoaderServerListener implements ServletContextListener
1.
http://dogstar.iteye.com/blog/120707
2.
http://guozi.iteye.com/blog/136810
1.
http://cxlh.iteye.com/blog/693748
2.
http://fantaxy025025.iteye.com/blog/753795
3.
http://qingtian881223.iteye.com/blog/542470
八.删除文件(目录) 1.删除文件
/** *//**删除文件
* @param path 目录
* @param filename 文件名
*/
public void delFile(String path,String filename)...{
File file=new File(path+"/"+filename);
if(file.exists()&&file.isFile())
file.delete();
...
七.创建文件(文件夹) 1.创建文件夹
/** *//**创建文件夹
* @param path 目录
*/
public void createDir(String path)...{
File dir=new File(path);
if(!dir.exists())
dir.mkdir();
}
2.创建新文件
/** *//**创建新文件
* @param path 目录
* @param filename 文件 ...
六.读文件 1.利用FileInputStream读取文件
/** *//**读文件
* @param path
* @return
* @throws IOException
*/
public String FileInputStreamDemo(String path) throws IOException...{
File file=new File(path);
if(!file.exists()||file.isDirectory())
throw ...
五.转移文件目录 转移文件目录不等同于复制文件,复制文件是复制后两个目录都存在该文件,而转移文件目录则是转移后,只有新目录中存在该文件。
/** *//**转移文件目录
* @param filename 文件名
* @param oldpath 旧目录
* @param newpath 新目录
* @param cover 若新目录下存在和转移文件具有相同文件名的文件时,是否覆盖新目录下文件,cover=true将会覆盖原文件,否则不操作
*/
public void changeDirectory(Strin ...
/** *//**文件重命名
* @param path 文件目录
* @param oldname 原来的文件名
* @param newname 新文件名
*/
public void renameFile(String path,String oldname,String newname)...{
if(!oldname.equals(newname))...{//新的文件名和以前文件名不同时,才有必要进行重命名
File oldfile=new File(path+" ...
三.写文件 1.利用PrintStream写文件
/** *//**
* 文件输出示例
*/
public void PrintStreamDemo()...{
try ...{
FileOutputStream out=new FileOutputStream("D:/test.txt");
PrintStream p=new PrintStream(out);
for(int i=0;i <10;i++)
...