Intellij / Java making file to write notes [closed] - java

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 6 years ago.
Improve this question
How can I make a file within my program so I can write note for myself? I am aware that I can comment within the code; however, I want to have a dedicated file so I can write plain text.

if you update to intellij 14, you can use the scratches functionality: https://blog.jetbrains.com/idea/2014/09/intellij-idea-14-eap-138-2210-brings-scratch-files-and-better-mercurial-integration/

Related

How to run top - linux command in Java? [closed]

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 2 years ago.
Improve this question
I want to create a console application with all the functions of the top command, but through java
how to create this consol app with the top command through java professionally
I think it could be like this one:
Runtime.getRuntime().exec("ps");

Java eclipse I want to open the form like tab [closed]

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 7 years ago.
Improve this question
Java eclipse: I want to open the form as shown below
http://i.stack.imgur.com/U0wT5.png
You want to make your program look like that? With tabs? If that's the case, use a tabbed pane.
link: https://docs.oracle.com/javase/tutorial/uiswing/components/tabbedpane.html

How to make string as Hyperlink using java [closed]

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
i want to show like ..i have taken one string vale="D://App//Test"
and this path have to make as Link.if i click on this this window path wil open.How to do.Can you please suggest me.
Using java.nio.file:
Paths.get("D://App//Test").toRealPath().toUri().toURL();

Following lines of code [closed]

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
Is there a program, or a native feature of Eclipse that allows for running a class in steps, each step being detailed (value of containers at that step, highlighting the line of code that is being executed at that step, etc).
You can try Jive debugger. This was developed by my university.
http://www.cse.buffalo.edu/jive/

recognize variables in assembly code [closed]

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
How do you know what are the variables within the assembly code?thanks for the help.
n.b
If you also show me some piece of code. thanks
Assembly has registers which can be used like variables but with a few limitations (size etc.). Assembly will be different based upon the type of processor you are writing it for. Check out the wikipedia article for x86.

Categories

Resources