Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
The EmEditor claims https://www.emeditor.com/text-editor-features/large-file-support/files-up-to-248gb/ it can open upto 248gb of text file
I have 1GB or 10GB text - i.e log file
How to show up via Java in Java Swing UI or any UI with search option to search a text?
Thanks
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I want to change my android studio setting in a way that when I write:
system.out.print();
it automatically change it to caps: System.out.print();
with out the need to turn on capslock every time
you can simply write "sout" then press Tab you will get "System.out.print("");" written immediately
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I am trying to write a code for my project.In that a menu will be displayed to the user and user selects an option then it displays the pre-defined output.That's all fine but i want that data which is displayed on command prompt to be copied into a file to analyze the data ca anyone help me with code:(
I am assuming you want to do it from the Java itself with Java File API or so. If so please check FileWriter class. Other way is you can follow this https://www.makeuseof.com/tag/save-command-line-output-file-windows-mac-linux/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to grab some information off of a website (for example: a shopping website) and display the information on a android app. Is there anyway that I can do this?
-Thanks
Have you tried using jsoup?
It might be the one that you need.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Is it any possibility to take input from notepad at run time in java. More specifically what I write on the notepad it will consider as an input for java function at run time.
There are two ways of doing this:
Use Swing/JavaFX to write a notepad app, and read the info from there.
Use Watchers to detect when a notepad file was updated.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
If we have file sample, instead of saving sample. Java if we save it as
sample.j or
sample.ja or
sample.jav
Will the program work or not?
No, the java-compiler only works with .java extensions.
why would you want to do that anyways?