⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 file.java

📁 JSP的上传文件的简易代码
💻 JAVA
字号:
package upload;

import java.io.File;
import java.io.FileOutputStream;

// Referenced classes of package:
// upBean

public class file
{

    private upBean parentUpBean;
    private String fileExtName;
    private String subTypeMIME;
    protected String fileName;
    protected int size;
    protected int startData;
    protected int number;

    protected file(String pFileName, int pStartData, int pSize, int pNumber, String pSubTypeMIME, upBean pParentUpBean)
    {
        fileName = pFileName;
        parentUpBean = pParentUpBean;
        startData = pStartData;
        size = pSize;
        number = pNumber;
        int extFrom = fileName.lastIndexOf(46) + 1;
        fileExtName = fileName.substring(extFrom);
        subTypeMIME = pSubTypeMIME;
    }

    public String getName()
    {
        return fileName;
    }

    public long getSize()
    {
        return (long)size;
    }

    public int getNumber()
    {
        return number;
    }

    public void setName(String name)
    {
        fileName = name;
    }

    public String getExtName()
    {
        return fileExtName;
    }

    public String getSubTypeMIME()
    {
        return subTypeMIME;
    }

    public void saveAs()
        throws Exception
    {
        try
        {
            if(parentUpBean.realPath.equals(""))
                throw new Exception("在你使用file.saveAs()方法前,请先在upBean中使用setRealPath()。");
            File fileWrite = new File(parentUpBean.realPath + File.separator + fileName);
            if(!parentUpBean.isCover && fileWrite.exists())
                throw new Exception("本系统不允许同名覆盖,且您要上传的这个文件在服务器上已经存在:" + fileName);
            FileOutputStream fo = new FileOutputStream(fileWrite);
            fo.write(parentUpBean.m_binArray, startData, size);
            fo.close();
        }
        catch(Exception e)
        {
            throw e;
        }
    }

    public void saveAs(String pRealPath)
        throws Exception
    {
        try
        {
            File fileWrite = new File(pRealPath + File.separator + fileName);
            if(!parentUpBean.isCover && fileWrite.exists())
                throw new Exception("本系统不允许覆盖文件,且您要上传的这个文件在服务器上已经存在:" + fileName);
            FileOutputStream fo = new FileOutputStream(fileWrite);
            fo.write(parentUpBean.m_binArray, startData, size);
            fo.close();
        }
        catch(Exception e)
        {
            throw e;
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -