现在要做一个JAVA上传word,然后可以修改上传的word文件,请教大家,如何实现。

解决方案 »

  1.   

    上传WORD容易,修改就比较麻烦了,JAVA肯定做不了,需要做一个ACTIVEX的控件
      

  2.   

    有什么问题大家探讨一下 加QQ群 深圳J2EE①群 32763598 验证 SZJP
      

  3.   

    dsoframer
    weboffice
    我资源里有资料
      

  4.   

    dsoframer修改版 weboffice控件 cab打包制作工具
    相关文档
    可以帮助你很好的解决在网页中嵌入word.excel的问题 
    http://download.csdn.net/source/2535737
      

  5.   

    恩  上传 , 写word 都不是很困难,  读就很不容易了 ,市场上面有卖 office插件的  比如金格
      

  6.   

    Famous global IT company 上海
    Position: Senior Java Software Engineer
    Business Unit: Famous global IT company - BAS - China - ITSEResponsibilities
     Lead the development of complex software product and mobile applications. 
     Design layered application, including user interface, business functionality, and database access. 
     Work with other engineers, managers, product managers, QA, and operation teams to develop innovative solutions that meet et needs with respect to functionality, performance, scalability, and reliability while meeting realistic implementation schedules and adhering to development goals and principles. 
     Estimate engineering efforts, plan implementations, and rollout system changes. 
     Share release management duties during feature rollouts and share on-call responsibilities. 
     Developing, unit testing, maintenance and release of software products under Agile patterns.
     Experience in developing highly scalable applications a major plus. 
    Job Requirements 
     BS/BA in CS or related field. 
     5+ years experience in requirements analysis, design, coding and testing of scalable, distributed, fault-tolerant applications.
     Expertise required in object-oriented design methodology and enterprise application development in Java . 
     Hands-on experience with J2EE/J2SE application. 
     Hands-on experience in Agile projects.
     Good at OO methodology, and familiar with Java design patterns.
     Proven result-oriented person with a delivery focus in a fast pace, high quality environment.
     Self-motivated and work under pressure.
     Solid capabilities of self study for new technologies.
     Knowledge of software product development is a major plus
     Fluent English in both speaking and writing.有意者加MSN:[email protected]
      

  7.   

    红迎风看看,可以抽取word内容,修改就不太清楚了,可以参考永中office的api等。
      

  8.   

    长传不难吧,用apache的fileupload组件。
    修改word必须客户端有装word,剩下的就是API调用的工作了,用js就可以。下面是一段简单的js操作WORD的代码,可以看看。
    <html>
    <head>
    <title>js word></title>
    <script language="javascript">function openWord(filename){ try  {
        var wrd=new ActiveXObject("word.Application");
        wrd.visible=true;
        var oDoc = wrd.Documents.Open(filename);
        var text = oDoc.Paragraphs(1).Range.Text;
        document.getElementById("area").value = text;
        wrd.Documents.close();
        wrd.Quit();
        wrd=null;
     } catch(e){}  }</script>
    <head><body>
    <input name="file1" type="file" class="textarea" id="file1" size="35">
    <input name="Submit2" type="button" class="btn_grey" onClick="openWord(file1.value)" value="打开Word并显示内容">
    <textarea name="area" id="area" cols="100" rows="10" value=""></textarea></body>
    </html>
      

  9.   

    上传后把word内容存到库中,页面修改完word内容后重新写到文件里
      

  10.   

    刚做完
    修改用的dosframer插件。。
    你可以去看看~
      

  11.   

    jacob 组件可以实现word在线编辑,保存