首页 > 开发 > 综合 > 正文

File存入到数据库的办法

2024-07-21 02:14:48
字体:
来源:转载
供稿:网友


  当需要把文件存入到服务器端的数据库中,有四种方式可行:

  1.servlet/jsp+fileupload/smartupload/自己编一个实现接受文件的javabean.然后调用相关的程序,把文件存入数据库中。这也是通常的选择。

  2.通过数据库的存储过程,直接用sql来操作可以实现,需要访问文件系统。见全文搜索中向数据库中存入文件的办法。

  3.rmi客户/服务器的方式,由于rmi对实现的接口的参数要求是可串行化的,因此可以选用byte[]或fileupload组件中fileitem对象等,由于在rmi中通常使用双方协商好的对象类型,因此在文件传输,可选用定义一继承seriable接口的类对象,包含文件和文件的相关信息。

  4.虽然ejb是不能访问文件系统,而且要求实现的接口的参数要求是可串行化的,还必须是ejb规范下的数据类型(基本的数据类型)因此不能选用java.io包下的类(非串行化)和像fileupload组件等之外的类对象(串行化)作为参数。但是在ejb内部是可以使用java.io包中的对象。通过ejb来实现把文件存入到数据库的方法:

 1).用byte[]作为远程接口的参数类型.

 2).用file,fileinputstream,datoutputstream来实现文件对象,

 3).然后以文件对象流的形式存入数据库中。

  在ejb中的实现方法:

public string upfile(byte[] filebyte,java.lang.string filename ){
  try{
   system.out.println("fdjkj");
  file f=new file(filename);
   dataoutputstream fileout=new dataoutputstream(new fileoutputstream(f));
     
   fileinputstream fi=new fileinputstream(f);
   int li=fi.read(filebyte,0,filebyte.length-1);
   fileout.write(filebyte,0,filebyte.length-1);//这两句不能颠倒,上面依据是表示开始向fileinputstream中读入数据,这一句才是把byte[]中的数据读入到流中
   system.out.println("fdjkj");
   string dname="com.microsoft.jdbc.sqlserver.sqlserverdriver";
   string conurl="jdbc:microsoft:sqlserver://159.164.176.116:1038;databasename=digital lab";
 //  file f1=new file(""+fds.get("fileid") );
      connection con=null;
         statement stm=null;
   resultset rs=null;
   preparedstatement ps=null;
        
         class.forname(dname).newinstance();system.out.println("fdjkj");
   con=drivermanager.getconnection(conurl,"gaolong1","831001");system.out.println("fdjkj");
   string sql="insert into testejbfile values('"+filename+"',?,"+(filebyte.length-1)+")";
   //string sel="select * from  xinxi where changhao=215;";
   //string sel="select * from  custom where yuming='212';";
         ps=con.preparestatement(sql);system.out.println("fdsssssjkj");
         ps.setbinarystream(1,fi,(int)filebyte.length-1);
       //  ps.setbytes(1,b);
            ps.executeupdate();system.out.println("fdjkj");
               ps.close();
  return "ok";
  }catch(exception e){
   e.printstacktrace();
   return "false";
  }
 }
}

  调用ejb的客户端程序:

package com.j2ee.first.interfaces;
import javax.naming.context;
import javax.naming.initialcontext;
import javax.rmi.portableremoteobject;
import java.util.properties;
import java.io.*;
/**
 * @author gaolong1
 *
 * todo 要更改此生成的类型注释的模板,请转至
 * 窗口 - 首选项 - java - 代码样式 - 代码模板
 */
public class ejbclient {

 public static void main(string[] args) {
  try{
     string url="t3://59.64.76.16:7001";
     properties prop=new properties();
     prop.put(context.provider_url,url);
        prop.put(context.initial_context_factory,"weblogic.jndi.wlinitialcontextfactory");
     context ctx=new initialcontext(prop);
  object obj=ctx.lookup("ejb/com/j2ee/first/ejb/hellohome");
  /* properties pr=system.getproperties();
  context ctx=new initialcontext(pr);
     object obj=ctx.lookup("ejb/com/fristejb/trader/ejb/traderhome");
  */
  hellohome trh=(hellohome) portableremoteobject.narrow(obj,hellohome.class);
  hello tr=trh.create();
  system.out.println(tr.hello());
  file f=new file("12.xml");
           bufferedreader br=new bufferedreader(new inputstreamreader(new fileinputstream(f),"utf-8"));
    string str="";
    string strup="";
    while((str=br.readline())!=null)
    strup+=str;
    system.out.println(strup);
  byte[] bt=strup.getbytes();//把文件变成byte数组
  system.out.println(bt);
  string test=tr.upfile(bt,"12.xml");//调用ejb程序
  system.out.println(test);
  tr.remove();
  }catch(exception e){
   e.printstacktrace();
  }

 }
}

  在ejb中实现文件存入数据库的方法,就是通过把string或byte[]变成文件对象,然后存入到数据库中,但在操作的过程中要注意ejb不能操作文件系统,同时也不因为这而认为在ejb中不能操作文件流。操作文件流可能性能有所下降。使用j2ee组件时要严格注意规范,在规范内实现需要的功能。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表