Results 1 to 20 of 21
Thread: Browser
- 05-12-2008, 06:37 AM #1
Member
- Join Date
- May 2008
- Posts
- 8
- Rep Power
- 0
- 05-12-2008, 06:51 AM #2
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Welcome to our community. :)
You really wants to build a Java browser or a kind of browser display window? Because it's not much easy pal.
- 05-12-2008, 07:46 AM #3
Java Browser like what?Hello, I just joined this place because I have 2 tasks to be figured out with, in the UF my teacher told me to make a java browser...... any help?
To browse Java files? classes?
Or like A Java Navigator/Explorer?(like windows explorer)
Or a Java Web Browser?
and what is UF by the way?freedom exists in the world of ideas
- 05-12-2008, 07:59 AM #4
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Yep, what he meant is not clear. Working on a Java browser. Interesting. So in near future we have another browser. ;)
Please explain your question much clearly.
- 05-13-2008, 01:08 AM #5
Member
- Join Date
- May 2008
- Posts
- 8
- Rep Power
- 0
I meant like a java web browser :D that could surf the internet? or maybe theres a way to load like idk internet expolrer through java and only show the browser part? and then design the rest of GUI by yourself? Idk.... :confused:
UF stands for (University of Florida)
- 05-13-2008, 03:59 AM #6
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
- 05-13-2008, 04:06 AM #7
@OP.
You can google it on the net....
Here is an example,
A very simple Java Web Browser...
Eranga,
Maybe he wants first to create a basic gui just to test the code. Implement the purpose( Browsing ) maybe using JEditorPane or JTextPane, and redesign the GUI to finalize....
(Im not sure) :)Last edited by sukatoa; 05-13-2008 at 04:11 AM.
freedom exists in the world of ideas
- 05-13-2008, 04:18 AM #8
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Ok, we'll see what he wants to do.
- 05-13-2008, 05:30 PM #9
Member
- Join Date
- May 2008
- Posts
- 22
- Rep Power
- 0
- 05-14-2008, 02:54 AM #10
That's a big project....
I hope he may understand it well.freedom exists in the world of ideas
- 05-14-2008, 04:22 AM #11
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Ya, seems to me there are all informations are available. But I don't know how far practicable to him it is. :)
- 05-15-2008, 12:22 AM #12
Member
- Join Date
- May 2008
- Posts
- 8
- Rep Power
- 0
sukatio my compiler gets an error on your code at "LinkFollower"
- 05-15-2008, 12:26 AM #13
Member
- Join Date
- May 2008
- Posts
- 8
- Rep Power
- 0
Jesdiesciple you gave me a link to a jarred java web browser... i acctually want code... but ill try google
- 05-15-2008, 12:29 AM #14
Member
- Join Date
- May 2008
- Posts
- 22
- Rep Power
- 0
The source is also available; see Lobo Project Java Source Code
EDIT: Also see SourceForge.net: Open Discussion
- 05-15-2008, 02:58 AM #15
Member
- Join Date
- May 2008
- Posts
- 8
- Rep Power
- 0
- 05-15-2008, 03:20 AM #16
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
What you mean? You can't see the page what he linked there? I don't think so. It's work for me well.
- 06-11-2008, 03:45 AM #17
Member
- Join Date
- Jun 2008
- Posts
- 4
- Rep Power
- 0
hi
u just used JEditorPane if you want to display web page. if it is in wml or xhtml. u need to move the wml part and set the mime type to text/html
it should display the web page.
you might try below.
JEditorPane editorPane;
String url = your web address
java.net.URL helpURL = new java.net.URL(url);
editorPane.setPage(helpURL);
- 06-11-2008, 03:49 AM #18
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Working on the JEditorPane for this is not a good idea. Just set a URL, which is full of more graphics. Your window freeze in few seconds. JEditorPane still not that much advanced still.
- 06-11-2008, 11:55 AM #19
Member
- Join Date
- May 2008
- Posts
- 31
- Rep Power
- 0
final JFrame frame = new JFrame("Browser");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOS E);
frame.setLocationByPlatform(true);
final JPanel panel = new JPanel();
panel.setLayout(new BorderLayout());
panel.setPreferredSize(new Dimension(400, 300));
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
frame.setLocation((dim.width - 400) / 2, (dim.height - 300) / 2);
// frame.setResizable(false);
final WebBrowser webBrowser = new WebBrowser();
try {
webBrowser.setURL(new URL("some url"));
panel.add(webBrowser, BorderLayout.CENTER);
frame.getContentPane().add(panel, BorderLayout.CENTER);
frame.pack();
frame.setVisible(true);
- 06-11-2008, 12:00 PM #20
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
What's this mean. What's your question?
And also please use code tags when you post any code here. It's help to read much clearly.
Similar Threads
-
Need Help! swt/Browser
By sealyu in forum SWT / JFaceReplies: 4Last Post: 07-09-2008, 08:16 PM -
how to get url from browser
By srinivas reddy in forum New To JavaReplies: 0Last Post: 02-08-2008, 07:46 AM -
Lobo Browser 0.97.5
By lobochief in forum Java SoftwareReplies: 2Last Post: 01-14-2008, 03:14 PM -
how to redirect the browser
By simon in forum Java AppletsReplies: 1Last Post: 08-02-2007, 05:24 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks