b2c信息网

您现在的位置是:首页 > 昨日新闻 > 正文

昨日新闻

文档管理源码java(文档管理源码php)

hacker2022-06-29 05:09:29昨日新闻95
本文目录一览:1、求Java+Oracle文档管理系统源代码2、

本文目录一览:

求Java+Oracle文档管理系统源代码

载入数据库驱动,连接数据库,输入数据库root和密码,建立数据库操作对象,编写语句

要做登录 你可以写一个注册页面,把注册的信息比如用户名和密码保存到数据库。在登录界面是输入用户名和密码,点击登录时,到数据库去查你刚才输入的用户名和密码是否正确,如果正确,就进入主界面,如果不正确,就还返回到登录页面。大体的思路就是这样的。祝你好运。

急求一个java写的 文件资源管理器 类似于widows的

你可以仔细读一下javax.swing.JFileChooser类的原码,在JDK的安装文件夹下就有,从中你能得到很多你要的东西。

同时看一下java.io.File类的源码,看看文件的底层操作刚怎么办。

如果对您有帮助,请记得采纳为满意答案,谢谢!祝您生活愉快!

急求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 = text + fr.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 (amountRead 0) {

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 ((i 0) (i (filename.length() - 1))) {

defExt = filename.substring(i + 1);

}

}

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 (bytesize 1024) {

size = String.valueOf(size) + "Bytes";

} else if (bytesize 1048576) {

number = (float) bytesize / 1024;

size = sn.parseCurrency(number) + "KB";

} else if (bytesize 1073741824) {

number = (float) bytesize / 1024 / 1024;

size = sn.parseCurrency(number) + "MB";

} else if (bytesize 1099511627776L) {

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(indexOfDot + 1,

indexOfDot + 2));

if (temp_int 5) { //判断小数点后一位的数字是否大於5

return Integer.parseInt(temp_str.substring(0, indexOfDot)); //四舍

} else {

return Integer.parseInt(temp_str.substring(0, indexOfDot)) + 1; //五入

}

}

}

求一个简单的用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();

}

}

求:JavaWEB实现Excel,Word ,PDF 等文档在线预览思路和源码Jar

做OA、文档管理的,现在都在用PageOffice组件,效果非常好,文档格式不走样,不过是收费的。找免费的,可忽略

发表评论

评论列表

  • 南殷酒奴(2022-06-29 07:05:10)回复取消回复

    To(newfile); }/** * 拷贝指定文件至指定的目录 * @param from String 源文件的路径及名称 * @param to String 目标路径及名称

  • 柔侣酒废(2022-06-29 14:03:08)回复取消回复

    sion V1.0 */public class FileOperator { /** * 不带参数的构造函数 */ public FileOperator(

  • 鸠骨疚爱(2022-06-29 14:35:35)回复取消回复

    * @param to String 目标路径及名称 * @throws IOException */ public void copy(Strin

  • 嘻友二囍(2022-06-29 16:35:16)回复取消回复

    * @param oldname String 重命名前的文件或目录名称 * @param newname String 重命名后的文件或目录名称 * @return boolean 返回操作是否成功结果 */ public boolean renam