substring:两个构造函数 string.substring(int a);string.substring(int a,int b)
lastIndexOf: 返回INT类型 ,String file="zhou.jpg";String a =file.lastIndexOf(".");
toLowerCase:返回小写字符
/**
* 上传文件
*
* @param fileName
* @param is
* @throws IOException
* filePath 为路径名
* fileName 为文件名字String fileName=file.getFileName();
*is 为文件输入流 InputStream is=file.getInputStream();
*/
private void uploadFile(String filePath, String fileName, InputStream is)
throws IOException {
OutputStream os = new FileOutputStream(filePath + fileName);
// 8k缓存数据
byte[] buffer = new byte[1024 * 8];
// 设置读进缓存的字节数
int len;
while ((len = is.read(buffer)) != -1) {
// 将缓存数据写入磁盘
os.write(buffer, 0, len);
}
// 关闭输出流
os.close();
// 关闭输入流
is.close();
}