资源简介
NULL
博文链接:https://lingf.iteye.com/blog/1108467
代码片段和文件信息
/*jadclipse*/// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) radix(10) lradix(10)
// Source File Name: File.java
package com.jspsmart.upload;
import java.io.ByteArrayInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.math.BigInteger;
import java.sql.ResultSet;
import java.sql.SQLException;
import javax.servlet.ServletException;
// Referenced classes of package com.jspsmart.upload:
// SmartUploadException SmartUpload
public class File
{
File()
{
m_startData = 0;
m_endData = 0;
m_size = 0;
m_fieldname = new String();
m_filename = new String();
m_fileExt = new String();
m_filePathName = new String();
m_contentType = new String();
m_contentDisp = new String();
m_typeMime = new String();
m_subTypeMime = new String();
m_contentString = new String();
m_isMissing = true;
}
public void saveAs(String destFilePathName)
throws SmartUploadException IOException
{
saveAs(destFilePathName 0);
}
public void saveAs(String destFilePathName int optionSaveAs)
throws SmartUploadException IOException
{
String path = new String();
path = m_parent.getPhysicalPath(destFilePathName optionSaveAs);
if(path == null)
throw new IllegalArgumentException(“There is no specified destination file (1140).“);
try
{
java.io.File file = new java.io.File(path);
file.createNewFile();
try
{
FileOutputStream fileOut = new FileOutputStream(file);
fileOut.write(m_parent.m_binArray m_startData m_size);
fileOut.close();
}
catch(Exception e)
{
throw new IllegalArgumentException(“Path‘s name is invalid or does not exist (1135).“);
}
}
catch(IOException e)
{
throw new SmartUploadException(“File can‘t be saved (1120).“);
}
}
public void fileToField(ResultSet rs String columnName)
throws SQLException SmartUploadException IOException ServletException
{
long numBlocks = 0L;
int blockSize = 65536;
int leftOver = 0;
int pos = 0;
if(rs == null)
throw new IllegalArgumentException(“The RecordSet cannot be null (1145).“);
if(columnName == null)
throw new IllegalArgumentException(“The columnName cannot be null (1150).“);
if(columnName.length() == 0)
throw new IllegalArgumentException(“The columnName cannot be empty (1155).“);
numBlocks = BigInteger.valueOf(m_size).divide(BigInteger.valueOf(blockSize)).longValue();
leftOver
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-06-28 19:55 源码\
目录 0 2011-06-28 19:55 源码\com\
目录 0 2011-06-28 19:55 源码\com\jspsmart\
目录 0 2011-06-28 19:55 源码\com\jspsmart\upload\
文件 7577 2011-06-28 14:28 源码\com\jspsmart\upload\File.java
文件 2067 2011-06-28 14:29 源码\com\jspsmart\upload\Files.java
文件 2350 2011-06-28 14:29 源码\com\jspsmart\upload\Request.java
文件 27351 2011-06-28 19:50 源码\com\jspsmart\upload\SmartUpload.java
文件 684 2011-06-28 14:30 源码\com\jspsmart\upload\SmartUploadException.java
相关资源
- 物流管理系统源码(含数据库)5624
- jsp模拟酷狗官网源码(附数据库)
- 一个完整的点餐微信小程序(附后台
- 基于 struts 的学生寝室管理系统的设计
- 煤矿安全管理系统(jsp源码+数据库脚
- Java快速开发平台源码(renren-fast)
- 基于JSP实现的美食餐饮管理系统(源
- 尚硅谷书城源码(仅附html页面)
- 都市供求信息网(源码+数据库+文档)
- 图书管理系统(源码+数据库+截图)
- 学生信息管理系统源码+mysql数据库
- javaweb网上购物系统源码(附数据库脚
- jsp+servlet+jdbc开发学生信息后台管理系
- JSP选课系统(源码+文档+数据库)
- 基于JSP的超市销售管理系统(源码+
- jsp宠物商店(源码+数据库)
- 毕业设计-医院人事管理系统(源码
- Vue + SpringBoot + MyBatis 音乐网站(源码
- jsp进销存管理系统(源码+数据库+文档
- 安全测试工具ysoserial
- 基于JAVA_JSP电子书系统(源码+数据库
- JSP考试网上报名考试系统(源码+数据
- 一站式Java网络编程 BIO-NIO-AIO资料源码
- Java 仿QQ(附客户端以及服务端源码)
- java swing工资管理系统(源码+数据库
- Android代码-多功能拨号盘源码.zip
- jdk和cglib动态代理的{jar包+源码}
- 顺丰丰桥接口开发详细教程源码含下
- JSP购物网站完整源码包含项目源码,
- android RDP远程桌面客户端源码
评论
共有 条评论