上传流的分析

作者:袖梨 2022-07-02

 ServletInputStream sis = request.getInputStream();
        while( (rtnPos = sis.readLine( buffs, 0, buffs.length )) != -1 ){
            String strBuff = new String( buffs, 0, rtnPos );
            out.print(strBuff);
            out.print("
");
        }

相关文章

精彩推荐