如何在jsp中获取与原始列表相同的列表

时间:2017-02-09 09:56:33

标签: java jsp

输入列表是第一种格式,例如SI.lst inpit显示将如下所示:

enter image description here

编码后读取列表,输出显示为

enter image description here

这是错误的输出,它应该与输入完全相同。

下面的

是JSP编码

StringBuffer sbURL = new StringBuffer(TRKD_WEB_SERVER);
    sbURL.append(sSearchBy);
    //sbURL.append("?request=");        
    urlFeed = new URL(sbURL.toString());
    conFeed = urlFeed.openConnection();
    conFeed.setConnectTimeout(30000);
    try{
        in = new BufferedReader(new InputStreamReader(conFeed.getInputStream()));

        if (in!=null)
        {
            strData=new StringBuffer();
            while ((ch=in.read()) != -1)
            {
                strData.append((char)ch);
            }
        }

我的编码有什么问题,请提出建议。

谢谢

0 个答案:

没有答案