how to open an ms office application either .doc,.xls,etc in java??
i m new at java so don't know how to open a .doc or .txt file using java .
Opening a .txt is easy. Read a basic io tutorial that talks about FileReader or Scanner. For .doc or .xls, it requires a bit more processing since the data can take many different forms. If you're new to Java you might not want to do this yourself yet. You can use third party packages like poi, lucene, itext e.t.c
Opening a .txt is easy. Read a basic io tutorial that talks about FileReader or Scanner. For .doc or .xls, it requires a bit more processing since the data can take many different forms. If you're new to Java you might not want to do this yourself yet. You can use third party packages like poi, lucene, itext e.t.c
Read the tutorial and write the code yourself. We can assist if you get problems with it not to write codes for you without you putting any effort. See the guidelines.
Read the tutorial and write the code yourself. We can assist if you get problems with it not to write codes for you without you putting any effort. See the guidelines.
Comment