0

我正在尝试将 UTF-8 文本文件上传到 Blackberry 中的服务器。上传效果很好,但是当我检查服务器中的文件时,它是一个 ASCII 文件,而我需要的是一个 UTF-8 文件。

这是我在创建文件时使用的代码:

FileConnection fc = (FileConnection)Connector.open(fileName);
if (!fc.exists()){
    fc.create();
}
long byteOffset = fc.usedSize();
OutputStream outStream = fc.openOutputStream(byteOffset);           
outStream.write(line.getBytes("UTF-8"));
outStream.close();
fc.close();

要发送文件,我使用这个:

public void run (){

    httpConnection = null;
    _connectionURL = null;
    String lineEnd = "\r\n";
    String twoHyphens = "--"; 
    String boundary = "*****";  
    int rc = -1;
    OutputStream os = null;

    try {

        _connectionURL = Constants.UPLOAD_URL + getConnectionString();

        httpConnection = (HttpConnection)Connector.open(_connectionURL);
        byte [] postDataBytes = getData();

        httpConnection.setRequestMethod("POST");
        httpConnection.setRequestProperty("Connection", "Keep-Alive"); 
        httpConnection.setRequestProperty("User-Agent", "BlackBerry");
        httpConnection.setRequestProperty("Content-Type", "multipart/form-data;boundary=*****");                        
        httpConnection.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_LANGUAGE, "en-US");
        httpConnection.setRequestProperty(HttpProtocolConstants.HEADER_CACHE_CONTROL,"no-cache, no-store, no-transform");           

        os = httpConnection.openOutputStream();
        os.write((twoHyphens + boundary + lineEnd).getBytes());
        os.write(("Content-Disposition: form-data; name=\"uploadedfile\";filename=\"" + fileName +"\"" + lineEnd).getBytes());
        os.write(lineEnd.getBytes());
        os.write(postDataBytes);
        os.write(lineEnd.getBytes());
        os.write((twoHyphens + boundary + twoHyphens + lineEnd).getBytes());
        os.flush(); 


        // Response
        rc = httpConnection.getResponseCode();
        InputStream in = httpConnection.openInputStream();
        int ch;
        StringBuffer stringBuffer = new StringBuffer();
        while( ( ch = in.read() ) != -1 ){
            stringBuffer.append( (char)ch );
        }            
        String responseString = stringBuffer.toString();

        ...

    }catch (IOException ioe){
       ...
    }
}

...

private byte[] getData() throws IOException {
    int _c;
    StringBuffer _stringBuffer = new StringBuffer("UTF-8");
    FileConnection fileForUpload = (FileConnection) Connector.open(Constants.FOLDER_FILES+this.fileName, Connector.READ);
    this.fileInputStream = fileForUpload.openDataInputStream();
    this.postData = new URLEncodedPostData("UTF-8", false);
    while( (_c = this.fileInputStream.read()) != -1){
        _stringBuffer.append((char)_c);         
    }
    postData.setData(_stringBuffer);
    byte [] _postData = postData.getBytes();
    fileForUpload.close();
    return _postData;
}

我猜getData()方法或httpConnection属性有问题,但我不知道是什么问题。

谢谢你的帮助

4

2 回答 2

2

看看这段代码,它出现了两次:

while( ( ch = in.read() ) != -1 ){
    stringBuffer.append( (char)ch );
}

这将每个字节视为一个单独的字符,在 ISO-8859-1 中有效。

如果您真的想将内容转换为文本,您应该使用InputStreamReaderUTF-8 编码的,然后理想地读取字符(而不是一次一个字符)。

这也无济于事:

byte [] _postData = postData.getBytes();

这将使用平台默认编码将字符串转换为字节——这几乎不是你想要的。

鉴于您的getData方法正在尝试将文件作为字节数组读取,您根本不应该将其转换为文本,IMO。如果您事先知道文件长度,您应该只创建一个大小合适的字节数组并重复调用InputStream.read(byte[], int, int),注意返回值以查看您已经阅读了多远。如果你不这样做,你可以重复读入一个小的缓冲区,然后将你刚刚读到的数据写入一个ByteArrayOutputStream你以后可以从中获取字节数组的数据。

此外,您似乎永远不会关闭任何流 - 您应该在finally语句中执行此操作,以便即使抛出异常也关闭流。

于 2013-01-03T15:20:54.757 回答
2

除了 Jon Skeet 的回答。

要从文件中读取字节数组,您可以简单地使用net.rim.device.api.io.IOUtilities

FileConnection fileForUpload = 
        (FileConnection) Connector.open(path, Connector.READ);
InputStream stream = fileForUpload.openInputStream();
byte[] data = IOUtilities.streamToBytes(stream);
于 2013-01-03T21:23:28.527 回答