Need to convert html to dot file extension

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • krishindevnet
    New Member
    • Jan 2008
    • 2

    Need to convert html to dot file extension

    Hi ,
    I am working on a project which has editor which generates the document templates in HTML .I am required to convert these HTML templates to dot file extension .
    If anybody knows about that please help me out and guide me overcoming these problem.

    thanks and regards,
    Krish
  • BigDaddyLH
    Recognized Expert Top Contributor
    • Dec 2007
    • 1216

    #2
    Originally posted by krishindevnet
    Hi ,
    I am working on a project which has editor which generates the document templates in HTML .I am required to convert these HTML templates to dot file extension .
    If anybody knows about that please help me out and guide me overcoming these problem.

    thanks and regards,
    Krish
    It's easy to change a file's extension -- use method renameTo of java.io.File.



    Or did you want to change the file's format?

    Comment

    • krishindevnet
      New Member
      • Jan 2008
      • 2

      #3
      Originally posted by BigDaddyLH
      It's easy to change a file's extension -- use method renameTo of java.io.File.



      Or did you want to change the file's format?
      Thanks for reply...But I actually need to change the file's format from HTML or PDF to the DOT format(so that the document templates can be stored and modified in word).

      Comment

      • BigDaddyLH
        Recognized Expert Top Contributor
        • Dec 2007
        • 1216

        #4
        Originally posted by krishindevnet
        Thanks for reply...But I actually need to change the file's format from HTML or PDF to the DOT format(so that the document templates can be stored and modified in word).
        Why use Java to do this? I don't know about PDF, but couldn't you just open a HTML document in Word then save it in DOT format?

        Comment

        Working...