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 9 years ago.
Improve this question
I am an amateur java program developer and was wondering if anybody knows how to write a web browser in java if possible.
If you need a component to render HTML, JEditorPane in the javax.swing library is capable of doing it for basic HTML. You could mock browser behavior by adding an input for entering a URL, getting markup, and setting it to the editor pane. Tracking URL history and that sort of thing would be up to you, and it could be a decent project for learning a lot about Swing, event handling, concurrency, etc...
If you're looking at building your own rendering engine for HTML, CSS, and JavaScript... that's a much larger problem.
http://docs.oracle.com/javase/7/docs/api/javax/swing/JEditorPane.html
Related
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 3 years ago.
Improve this question
I have a table on my web-page with thousands of entries and it shows 20 entries at a time. I want to take screenshots of all the entries page by page and then create a video of them using code. What would be the best language and method to do this task? I know nothing of this thing so I am open to any language like python, Java, Go, etc.
You can user Selenium library in either java or python, it has some tools for doing these operations.
here is an exapmle.
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 9 years ago.
Improve this question
I like the question formatting of stack overflow.
I am building a discussion forum kinda app in javafx.
Please guide me how can I do the same there?
StackOverflow uses Markdown formatting.
There are a few 3rd party components which allow authoring and rendering of Markdown in JavaFX. You could adapt these for your forum application. Listed in no particular order:
Brain Low: JavaFX Markdown Viewer
Markdown Pad FX
Flowdown
MarkdownFX
I have not used any of the above projects.
Also there are many HTML based Markdown editors, so you another option is to embed a Markdown HTML Editor in a JavaFX WebView, though I think a native JavaFX solution would probably be preferred if you can get that to work well for you.
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 4 years ago.
Improve this question
I am just learning java. I just want to make a simple application to access a web-site.
there is a website onto which i want to log-in through java:
and then interact with it through my interface, basically after log in, i would be writing in some text boxes and sending it.
I tried many places to do it, studied HTTP protocol but still cant make it.
can someone help me out?
Accessing a web site, logging in and interacting with forms on it is somewhat complex work, so it might not be the best choice for a first java project.
But if you want to do it, you should probably use Apache HttpComponents/HttpClient.
There are useful examples at the above link as well, which may help you get started.
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 9 years ago.
Improve this question
I have a image open-able in Fireworks and I was told to use it as a Joomla Template.
I'd like to have some tips on how to begin programming it.
Thank you.
You probably shouldn't do this in fireworks. Making a Joomla template requires knowledge of at least HTML, CSS and a bit of PHP. If you know how to build websites in general, you can find tutorials on how to build Joomla templates on their wiki.
If you have no experience in making websites what so ever, you really shouldn't start by making a template for a CMS. You can't simply use an image as a template.
I don't know who told you to do this, but from the way you ask this question, I must admit I think you are in way over your head! :S
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 9 years ago.
Improve this question
I want to create a website for users to upload videos, but I want to do some compression/conversion on the client-side first before actually uploading to my servers. This should cut down on upload times I hope.
My inital thought is to make a Java Applet, since I imagine Flash wouldn't have ffmpeg on the client-side. I'm not sure what version of Java to use, or whether to use Java Web FX. I haven't touched Java in years, so I don't even know what IDE or SDK to use (I'm on a Mac).