欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jsp SmartUpload 中文乱码问题解决

程序员文章站 2023-11-07 12:54:34
在用jspsmartupload组件进行文件上传下载的时候,如果用户选择的是含有中文名字的文件名或是文件路径含有中文,则会出现乱码.经过一段时间的调试,本人已经初步解决了这...

在用jspsmartupload组件进行文件上传下载的时候,如果用户选择的是含有中文名字的文件名或是文件路径含有中文,则会出现乱码.经过一段时间的调试,本人已经初步解决了这个问题.现将解决的代码贴出来.

一、上传

在smartupload.java文件中,增加一个属性private string charset用于进行字符编码转换,相应的有两个方法:

复制代码 代码如下:
public void setcharset(string charset)
{
    this.charset = charset;
}
public string getcharset()
{
    return this.charset;
}

另外改动二个地方:

在upload()方法中,将string s11 = new string(m_binarray,m_startdata,(m_enddata - m_startdata) + 1);改为

复制代码 代码如下:
string s11 = new string(m_binarray,m_startdata,(m_enddata - m_startdata) + 1,this.getcharset());

这个时候我们应该在进行处理上传的jsp中进行设置

复制代码 代码如下:
smartupload su = new smartupload();
su.setcharset("utf-8");

就可以了.

在getdataheader()方法中,将string s = new string(m_binarray, i, (j - i) + 1);改为

复制代码 代码如下:
string s;
try
{
    s = new string(m_binarray, i, (j - i) + 1,this.getcharset());
}
catch(exception e)
{
    s = "";
}

在smartfile.java文件中,增加一个属性private string charset用于进行字符编码转换,相应的有两个方法:

复制代码 代码如下:
public void setcharset(string charset)
{
    this.charset = charset;
}
public string getcharset()
{
    return this.charset;
}

另外需要改动一个地方
在getcontentstring()方法中,将string s = new string(m_parent.m_binarray,m_startdata,m_size);改为

复制代码 代码如下:
string s;
try
{
    s = new string(m_parent.m_binarray,m_startdata,m_size,this.getcharset());
}
catch(exception e)
{
    s = "";
}

对于smartfile.java文件中,本人认为可改可不改,不会对上传有什么影响.
经过如此改动源代码后,对于中文乱码问题有很好的解决能力.

二、下载
在smartupload.java文件中,将downloadfile(string s, string s1, string s2, int i)方法改为

复制代码 代码如下:
public void downloadfile(string s, string s1, string s2, int i)
throws servletexception, ioexception, smartuploadexception
{
    if(s == null)
        throw new illegalargumentexception("file '" + s +
            "' not found (1040).");
    if(s.equals(""))
        throw new illegalargumentexception("file '" + s +
            "' not found (1040).");
        if(!isvirtual(s) && m_denyphysicalpath)
            throw new securityexception("physical path is
                denied (1035).");
    if(isvirtual(s))
        s = m_application.getrealpath(s);
    java.io.file file = new java.io.file(s);
    fileinputstream fileinputstream = new fileinputstream(file);
    long l = file.length();
    boolean flag = false;
    int k = 0;
    byte abyte0[] = new byte[i];
    if(s1 == null)
        m_response.setcontenttype("application/x-msdownload");
    else if(s1.length() == 0)
        m_response.setcontenttype("application/x-msdownload");
    else
        m_response.setcontenttype(s1);
    m_response.setcontentlength((int)l);
    m_contentdisposition = m_contentdisposition != null ? m_contentdisposition : "attachment;";
    if(s2 == null)
        m_response.setheader("content-disposition", m_contentdisposition + " filename=" + toutf8string(getfilename(s)));
    else
        if(s2.length() == 0)
            m_response.setheader("content-disposition", m_contentdisposition);
        else
            m_response.setheader("content-disposition", m_contentdisposition + " filename=" + toutf8string(s2));
    while((long)k < l)
    {
        int j = fileinputstream.read(abyte0, 0, i);
        k += j;
        m_response.getoutputstream().write(abyte0, 0, j);
    }
    fileinputstream.close();
}
 

另外需要增加一个获得汉字字符的utf-8编码的方法

复制代码 代码如下:
/**
* 将文件名中的汉字转为utf8编码的串,以便下载时能正确显示另存的文件名.
* 雨亦奇2003.08.01
* @param s 原文件名
* @return 重新编码后的文件名
*/
public static string toutf8string(string s) {
    stringbuffer sb = new stringbuffer();
    for (int i=0;i<s.length();i++) {
        char c = s.charat(i);
        if (c >= 0 && c <= 255) {
            sb.append(c);
        } else {
            byte[] b;
            try {
                b = character.tostring(c).getbytes("utf-8");
            } catch (exception ex) {
                system.out.println(ex);
                b = new byte[0];
            }
            for (int j = 0; j < b.length; j++) {
                int k = b[j];
                if (k < 0) k += 256;
                sb.append("%" + integer.tohexstring(k).touppercase());
            }
        }
    }
    return sb.tostring();
}

将这个增加到smartupload.java文件中,下载时的另存中文名乱码问题便不会出现了,处理完了,希望能给大家一个参考,也希望大家多多支持。