java文件管理代码 javaweb文件管理系统

求一个简单的用java语言编写的文件管理器的源代码??public class complie {
int i,j;
public complie(int i,int j)//构建一个复数类
{
this.i=i;
this.j=j;
}
complie add(complie c)//复数加法
{
int l,k;
l=c.i i;
k=c.j j;
return (new complie(l,k));
}
complie cut(complie c)//复数减法
{
int l,k;
l=i-c.i;
k=j-c.j;
return (new complie(l,k));
}
void ToString()//将复数输出
{
System.out.println("复数为:" i " " j "i");
}
public static void main(String[] args)
{
complie a=new complie(4,5);
complie b=new complie(2,3);
System.out.println("构造的复数类为:");
a.ToString();
b.ToString();
System.out.println("运算复数a b=:");
a.add(b).ToString();
System.out.println("运算复数a-b=:");
a.cut(b).ToString();
}
}
java Excel文件管理相关问题,如何自动按照属性将文件分类//你需要先去
去下载一个commons.io的jar包, 然后加载到你的project里.
//这个程序就实现了, 从根据 config.properties中第二列的file Type, 分别copy 第一列的file 到不同的folder.
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Scanner;
import org.apache.commons.io.FileUtils;
public class FileCopyPasteDemo
{
public static void main(String[] args)
{
FileCopyPasteDemo demo = new FileCopyPasteDemo();
demo.loadProperties();
demo.copyPaste();
}
private HashMapString, String fileList;
private void copyPaste()
{
File source = null;
for (String srcString : fileList.keySet())
{
String fileType = fileList.get(srcString);
System.out.println(srcString" is type of "fileType);
source = new File(srcString);
if (source.exists())
if (fileType.equals("A"))
copyDirectory(source, new File("C:\\ATypeFolder"));
else if (fileType.equals("B"))
copyDirectory(source, new File("C:\\BTypeFolder"));
}
}
private void loadProperties()
{
Scanner scan = null;
fileList = new HashMapString,String();
try
{
scan = new Scanner (new File("config.properties")); // File saved the file list
while(scan.hasNextLine())
{
String line = scan.nextLine();
String[] array = line.split(" ");
fileList.put(array[0], array[1]);
}
}
catch (Exception ex)
{
ex.printStackTrace();
}
finally
{
if (scan != null)
{
scan.close();
}
}
}
private void copyDirectory(File source, File dest)
{
try
{
FileUtils.copyFileToDirectory(source, dest);
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
用Java编写简单文件管理类java.io包里有很多与文件有关java文件管理代码的类java文件管理代码,可以很容易地实现文件java文件管理代码的创建、删除等基本操作java文件管理代码 , 建议楼主下载一个JDK API 1.6.0的帮助文档看看,里面有详细的介绍
急求Java简单文件管理类程序这是别人写好的
package sunnykid.file;
import java.io.*;
import sunnykid.text.SunnykidNumber;
/**
* p标题: JAVA文件操作工具类/p
* br
* p描述: 阳光软体工作室常用工具包/p
* br
* p版权: 版权所有 (c) 2007/p
* br
* p组织: 阳光软体工作室/p
*
* @author 钟晓籁
* @version V1.0
*/
public class FileOperator {
/**
* 不带参数的构造函数
*/
public FileOperator() {
super();
}
/**
* 删除指定的文件
* @param filepath String 待删除的文件路径及名称
* @throws IOException
*/
public void delete(String filepath) throws IOException {
Runtime rt = Runtime.getRuntime();
rt.exec("cmd /c del "filepath);
}
/**
* 将字符串写入文件
* @param content String 待写入的字符串内容
* @param filepath String 待写入的文件路径及名称
* @throws IOException
*/
public void write(String content, String filepath) throws IOException {
File file = new File(filepath);
FileWriter fw = new FileWriter(file);
fw.write(content);
fw.close();
}
/**
* 读取文件中的内容
* @param filepath String 待读取的文件路径及名称
* @return String 返回从文件中读取的字符串内容
* @throws IOException
*/
public String read(String filepath) throws IOException {
int text = 0;
File file = new File(filepath);
FileReader fr = new FileReader(file);
int len = (int) file.length();
char[] buffer = new char[len];
while (fr.ready()) {
text = textfr.read(buffer, text, len - text);
}
fr.close();
String content = new String(buffer, 0, text);
return content;
}
/**
* 判断一个文件是否存在
* @param filepath String 待判断的文件路径及名称
* @return boolean 返回文件是否存在结果
*/
public boolean isExist(String filepath) {
File file = new File(filepath);
if (file.exists()) {
return true;
} else {
return false;
}
}
/**
* 重命名文件或目录
* @param oldname String 重命名前的文件或目录名称
* @param newname String 重命名后的文件或目录名称
* @return boolean 返回操作是否成功结果
*/
public boolean rename(String oldname, String newname) {
File oldfile = new File(oldname);
File newfile = new File(newname);
boolean success = oldfile.renameTo(newfile);
return success;
}
/**
* 剪切指定文件至指定的目录
* @param from String 源文件的路径及名称
* @param to String 目标路径及名称
*/
public void move(String from, String to) {
File oldfile = new File(from);
File newfile = new File(to);
oldfile.renameTo(newfile);
}
/**
* 拷贝指定文件至指定的目录
* @param from String 源文件的路径及名称
* @param to String 目标路径及名称
* @throws IOException
*/
public void copy(String from, String to) throws IOException {
int BUFF_SIZE = 100000;
byte[] buffer = new byte[BUFF_SIZE];
InputStream in = null;
OutputStream out = null;
try {
in = new FileInputStream(from);
out = new FileOutputStream(to);
while (true) {
synchronized (buffer) {
int amountRead = in.read(buffer);
if (amountRead0) {
break;
}
out.write(buffer, 0, amountRead);
}
}
} finally {
if (in != null) {
in.close();
}
if (out != null) {
out.close();
}
}
}
/**
* 获取文件扩展名
* @param filename String 需要获取大小的文件之完整路径
* @return String 返回文件扩展名
*/
public String getExtension(String filename) {
String defExt = null;
if ((filename != null)(filename.length()0)) {
int i = filename.lastIndexOf('.');
if ((i0)(i(filename.length() - 1))) {
defExt = filename.substring(i1);
}
}
return defExt;
}
/**
* 获取文件字节数
* @param filename String 需要获取大小的文件之完整路径
* @return long 返回文件大小字节数
*/
public long fileSize(String filename){
long size = 0L;
File file = new File(filename);
if (this.isExist(filename) == true) {
size = file.length();
}
return size;
}
/**
* 获取标准单位之文件大小
* @param bytesize long 需要转换为标准单位的文件之字节数
* @return String 返回标准单位之文件大小
*/
public String switchSize(long bytesize) {
String size = "";
SunnykidNumber sn=new SunnykidNumber();
float number = 0.0f;
if (bytesize = 0) {
size = "0Bytes";
} else if (bytesize1024) {
size = String.valueOf(size)"Bytes";
} else if (bytesize1048576) {
number = (float) bytesize / 1024;
size = sn.parseCurrency(number)"KB";
} else if (bytesize1073741824) {
number = (float) bytesize / 1024 / 1024;
size = sn.parseCurrency(number)"MB";
} else if (bytesize1099511627776L) {
number = (float) bytesize / 1024 / 1024 / 1024;
size = sn.parseCurrency(number)"GB";
}
return size;
}
}
====================
package sunnykid.text;
import java.text.*;
/**
* p标题: 用於操作数字的类/p
* br
* p描述: 阳光软体工作室常用工具包/p
* br
* p版权: 版权所有 (c) 2007/p
* br
* p组织: 阳光软体工作室/p
*
* @author 钟晓籁
* @version V1.0
*/
public class SunnykidNumber {
/**
* 不带参数的构造函数
*/
public SunnykidNumber() {
super();
}
/**
* 将数字格式化成货币样式
* @param unfmt_dbl double 未经格式化的数字
* @return String 返回按照货币样式格式化后的字符串
*/
public String getCurrency(double unfmt_dbl) { //双精度数转化成货币类型两位小数
NumberFormat nf = NumberFormat.getCurrencyInstance(); //按照货币类型格式化数字
String fmted_str = nf.format(unfmt_dbl);
return fmted_str;
}
/**
* 按照货币类型格式化数字
* @param unfmt_dbl double 未经格式化的数字
* @return String 返回按照货币类型格式化后的字符串
*/
public String parseCurrency(double unfmt_dbl) { //双精度数转化成货币类型两位小数的字符串
DecimalFormat df = new DecimalFormat("#.00"); //按照货币类型格式化数字
String fmted_str = df.format(unfmt_dbl);
return fmted_str;
}
/**
* 双精度小数转化成百分数
* @param unfmt_dbl double 未经格式化的数字
* @return String 返回按照百分比样式格式化后的字符串
*/
public String parsePercect(double unfmt_dbl) { //双精度小数转化成百分数
NumberFormat nf = NumberFormat.getPercentInstance(); //按照百分比格式化数字
//nf.setMinimumIntegerDigits(integ);// 设置数的整数部分所允许的最大位数
//nf.setMaximumFractionDigits(fract);// 设置数的小数部分所允许的最大位数
String fmted_str = nf.format(unfmt_dbl);
return fmted_str;
}
/**
* 双精度小数四舍五入为整数
* @param unfmt_dbl double 未经转化的小数
* @return int 小数四舍后得到的整数
*/
public int roundNumber(double unfmt_dbl) {
String temp_str = String.valueOf(unfmt_dbl); //将小数转化为字符串
if (temp_str.indexOf(".") = 0) {
}
int indexOfDot = temp_str.indexOf("."); //获取小数点位置
int temp_int = Integer.parseInt(temp_str.substring(indexOfDot1,
indexOfDot2));
if (temp_int5) { //判断小数点后一位的数字是否大於5
return Integer.parseInt(temp_str.substring(0, indexOfDot)); //四舍
} else {
return Integer.parseInt(temp_str.substring(0, indexOfDot))1; //五入
}
}
}
【java文件管理代码 javaweb文件管理系统】关于java文件管理代码和javaweb文件管理系统的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

    推荐阅读