请问怎么获取excel中OLE对象。这里是个txt对象。 现在要获取这个Txt里边的数据,该怎么弄?谢谢啊。在线急。

解决方案 »

  1.   

    建议百度!给你个传递门http://hi.baidu.com/precious_love/blog/item/152f43cbbda16e1ebf09e6ab.html
      

  2.   


    你说的这个没有关于OLE对象的操作.急很.在线等.
      

  3.   

    用流读取txt里面的内容、、、、 public static void main(String[] args) throws IOException {   
        File file=new File("d://a.txt");   
        FileReader reader=new FileReader(file);   
        BufferedReader br=new BufferedReader(reader);   
        String s="";   
        int line=0;   
        while((s=br.readLine())!=null){ 
             这个s就是txt里面的内容
          }   
      

  4.   


    File file=new File("d://a.txt");   
    请问嵌入在Excel里的OLE文本对象的地址你怎么获取到?