Does anything know how to read a text file in java wihout using Java Class Library?
-
I have to write a java program where I should have input from file and there is condition for that, that we cant use Java Class Library. That mean I cant use import java.io stuff. Will appreciate early reply.
-
Answer:
You mean you can only use the classes in java.lang? or do you mean you can use any except those in java.io? If the former, sorry, can't be done. If the latter, sorry, but I don't see how, without resorting to a third-party library. Besides, they would only be hiding the use of java.io. Accessing "files" is a very file-system dependent operation and requires native code. The classes in java.io pass a lot of their method calls on to native code to execute the actual I/O. Even trying to hide the I/O behind "resource" and "network" activities via ClassLoader and the java.net package still requires eventual use of java.io. In fact, w/o java.io you don't even have a class type to represent "files", as the File class itself is in java.io. Check again w/ the instructor to make sure you haven't misinterpreted the instructions.
Smart_gi... at Yahoo! Answers Visit the source
Related Q & A:
- How to read a file?Best solution by Stack Overflow
- how to parse a xml file using jquery and phonegap?Best solution by Stack Overflow
- How to read a PDF file with PHP?Best solution by Stack Overflow
- how to create a new syntax in java?Best solution by Stack Overflow
- How to convert a HTML file to XML file?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.