VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 728|回复: 3

从ORACLE数据库下载文件的问题???急~

[复制链接]

1

主题

2

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
发表于 2020-1-2 22:40:01 | 显示全部楼层 |阅读模式
我用以下代码下载,过程没有报错
但是下载下来的东西 总是86字节,而且打开以后里面总是乱码 这是为什么呢?
请大家帮忙..谢谢了
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    String url="jdbc:oracle:thin:@192.168.31.109:1521:iasdb";
    //orcl为你的数据库的SID
    String user="news";
    String password="up722006";
    String name="xxx";
    Connection conn = DriverManager.getConnection(url,user,password);
   
    PreparedStatement st=conn.prepareStatement("select up_file from test where name=?" );
      st.setString(1,name);
      //ResultSet rs =st.executeQuery();
      ResultSet rs=st.executeQuery();
      if (rs.next())
      {
      byte[] cnt=rs.getBytes("up_file");
      System.out.print("here");
      response.getOutputStream().write(cnt);
      System.out.print("hehe");
      }
    }
回复

使用道具 举报

1

主题

2

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
 楼主| 发表于 2020-1-3 10:36:01 | 显示全部楼层
没人知道吗? 55555555555555555555
回复

使用道具 举报

0

主题

1

帖子

2.00

积分

新手上路

Rank: 1

积分
2.00
发表于 2020-7-14 19:00:01 | 显示全部楼层
文件是不是二进制的?这样的话遇到0就结束了吧。
回复

使用道具 举报

0

主题

16

帖子

11.00

积分

新手上路

Rank: 1

积分
11.00
发表于 2020-7-14 22:30:01 | 显示全部楼层
mstrBackName = result.getString("randomname");
             mstrfileName = result.getString("markname");
             pintid = result.getInt("id");
             InputStream inStream=result.getBinaryStream("MarkBody");
             String aa=getServletContext().getRealPath("/")+"upload/showFile/";     
             FileOutputStream fs=new FileOutputStream(aa+mstrBackName);
             if(mstrBackName!=null&&mstrBackName!="")
             {
                  byte[]  buffer =new  byte[1444];
                      while ((int byteread=inStream.read(buffer))!=-1)
                      {
                              fs.write(buffer,0,byteread);
                          }
}
你根据这个把你的改一改试试
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表