
05-12-2008, 07:37 AM
|
|
Member
|
|
Join Date: May 2008
Posts: 8
Rep Power: 0
|
|
Browser
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?
|
|

05-12-2008, 07:51 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,513
Rep Power: 11
|
|
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, 08:46 AM
|
 |
Senior Member
|
|
Join Date: Jan 2008
Location: Cebu City, Philippines
Posts: 540
Rep Power: 3
|
|
|
Quote:
|
|
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?
|
Java Browser like what?
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?
__________________
A specific, detailed, simple, well elaborated, and "tested before asking" question may gather more quick replies. hopefully
|
|

05-12-2008, 08:59 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,513
Rep Power: 11
|
|
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, 02:08 AM
|
|
Member
|
|
Join Date: May 2008
Posts: 8
Rep Power: 0
|
|
I meant like a java web browser  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....
UF stands for (University of Florida)
|
|

05-13-2008, 04:59 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,513
Rep Power: 11
|
|
Originally Posted by Jessie Madman
|
I meant like a java web browser that could surf the internet?
|
Still I'm confusing. Do you want to make a browser like Java GUI?
|
|

05-13-2008, 05:06 AM
|
 |
Senior Member
|
|
Join Date: Jan 2008
Location: Cebu City, Philippines
Posts: 540
Rep Power: 3
|
|
@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)
__________________
A specific, detailed, simple, well elaborated, and "tested before asking" question may gather more quick replies. hopefully
Last edited by sukatoa; 05-13-2008 at 05:11 AM.
|
|

05-13-2008, 05:18 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,513
Rep Power: 11
|
|
|
Ok, we'll see what he wants to do.
|
|

05-13-2008, 06:30 PM
|
|
Member
|
|
Join Date: May 2008
Posts: 22
Rep Power: 0
|
|
|
|
|

05-14-2008, 03:54 AM
|
 |
Senior Member
|
|
Join Date: Jan 2008
Location: Cebu City, Philippines
Posts: 540
Rep Power: 3
|
|
|
That's a big project....
I hope he may understand it well.
__________________
A specific, detailed, simple, well elaborated, and "tested before asking" question may gather more quick replies. hopefully
|
|

05-14-2008, 05:22 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,513
Rep Power: 11
|
|
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, 01:22 AM
|
|
Member
|
|
Join Date: May 2008
Posts: 8
Rep Power: 0
|
|
|
sukatio my compiler gets an error on your code at "LinkFollower"
|
|

05-15-2008, 01:26 AM
|
|
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, 01:29 AM
|
|
Member
|
|
Join Date: May 2008
Posts: 22
Rep Power: 0
|
|
|
|
|

05-15-2008, 03:58 AM
|
|
Member
|
|
Join Date: May 2008
Posts: 8
Rep Power: 0
|
|
hmm? the first link doesnt work
|
|

05-15-2008, 04:20 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,513
Rep Power: 11
|
|
|
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, 04:45 AM
|
|
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, 04:49 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,513
Rep Power: 11
|
|
|
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, 12:55 PM
|
|
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, 01:00 PM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,513
Rep Power: 11
|
|
|
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.
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +2. The time now is 07:18 AM.
|
|