<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Two Minute Web Browser in Java</title>
	<atom:link href="http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2012 12:18:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: sagar</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-11134</link>
		<dc:creator>sagar</dc:creator>
		<pubDate>Mon, 05 Sep 2011 07:38:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-11134</guid>
		<description>i didn&#039;t find any jdic distribution in the project site.can you please send it to my mail or please let me know if i can download from any other source.</description>
		<content:encoded><![CDATA[<p>i didn&#8217;t find any jdic distribution in the project site.can you please send it to my mail or please let me know if i can download from any other source.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sagar</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-11133</link>
		<dc:creator>sagar</dc:creator>
		<pubDate>Mon, 05 Sep 2011 07:36:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-11133</guid>
		<description>i am getting this error.please help me.

isDefaultBrowserMozilla
isDefaultBrowserMozilla
*** Jtrace: JDIC found BIN path=[D:\workspace\jdicTest\lib\windows\x86]
Can&#039;t execute the native embedded browser. Error message: java.io.IOException: The filename, directory name, or volume label syntax is incorrect
*** Jtrace: 
MyFocusListener: focusGained</description>
		<content:encoded><![CDATA[<p>i am getting this error.please help me.</p>
<p>isDefaultBrowserMozilla<br />
isDefaultBrowserMozilla<br />
*** Jtrace: JDIC found BIN path=[D:\workspace\jdicTest\lib\windows\x86]<br />
Can&#8217;t execute the native embedded browser. Error message: java.io.IOException: The filename, directory name, or volume label syntax is incorrect<br />
*** Jtrace:<br />
MyFocusListener: focusGained</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-5387</link>
		<dc:creator>Nitin</dc:creator>
		<pubDate>Thu, 17 Jun 2010 14:48:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-5387</guid>
		<description>I have very simple code :
CustomWebBrowser.java 
import java.net.MalformedURLException;
import java.net.URL;

import org.jdesktop.jdic.browser.WebBrowser;

public class CustomWebBrowser {
	public static void main(String[] args) throws MalformedURLException {
		WebBrowser wb	=	new WebBrowser(new URL(&quot;http://yahoo.com&quot;));
		
	}
}

I compiled it using :
javac -cp  jdic-20060613-bin-cross-platform/jdic.jar CustomWebBrowser.java 

It got compiled. But while running I am getting exception :

java -cp  jdic-20060613-bin-cross-platform/jdic.jar:. CustomWebBrowser
Exception in thread &quot;main&quot; java.lang.UnsatisfiedLinkError: no jdic in java.library.path
	at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1812)
	at java.lang.Runtime.loadLibrary0(Runtime.java:823)
	at java.lang.System.loadLibrary(System.java:1045)
	at org.jdesktop.jdic.browser.internal.WebBrowserUtil$1.run(Unknown Source)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.jdesktop.jdic.browser.internal.WebBrowserUtil.loadLibrary(Unknown Source)
	at org.jdesktop.jdic.browser.WebBrowser.(Unknown Source)
	at CustomWebBrowser.main(CustomWebBrowser.java:8)</description>
		<content:encoded><![CDATA[<p>I have very simple code :<br />
CustomWebBrowser.java<br />
import java.net.MalformedURLException;<br />
import java.net.URL;</p>
<p>import org.jdesktop.jdic.browser.WebBrowser;</p>
<p>public class CustomWebBrowser {<br />
	public static void main(String[] args) throws MalformedURLException {<br />
		WebBrowser wb	=	new WebBrowser(new URL(&#8220;http://yahoo.com&#8221;));</p>
<p>	}<br />
}</p>
<p>I compiled it using :<br />
javac -cp  jdic-20060613-bin-cross-platform/jdic.jar CustomWebBrowser.java </p>
<p>It got compiled. But while running I am getting exception :</p>
<p>java -cp  jdic-20060613-bin-cross-platform/jdic.jar:. CustomWebBrowser<br />
Exception in thread &#8220;main&#8221; java.lang.UnsatisfiedLinkError: no jdic in java.library.path<br />
	at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1812)<br />
	at java.lang.Runtime.loadLibrary0(Runtime.java:823)<br />
	at java.lang.System.loadLibrary(System.java:1045)<br />
	at org.jdesktop.jdic.browser.internal.WebBrowserUtil$1.run(Unknown Source)<br />
	at java.security.AccessController.doPrivileged(Native Method)<br />
	at org.jdesktop.jdic.browser.internal.WebBrowserUtil.loadLibrary(Unknown Source)<br />
	at org.jdesktop.jdic.browser.WebBrowser.(Unknown Source)<br />
	at CustomWebBrowser.main(CustomWebBrowser.java:8)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Goran Mitic</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-5014</link>
		<dc:creator>Goran Mitic</dc:creator>
		<pubDate>Fri, 05 Mar 2010 23:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-5014</guid>
		<description>WoW! This is what I need!
This is great, I followed the steps, and I ended with one error.
The URL is underlined red, saying: cannot find symbol
symbol : class URL
location: class cleanwv.net
wb.setURL(new URL(jTextField1.getText()));
1 error

Can you help me out, since vrealy love the simplicity of application!

Beginner, Goran</description>
		<content:encoded><![CDATA[<p>WoW! This is what I need!<br />
This is great, I followed the steps, and I ended with one error.<br />
The URL is underlined red, saying: cannot find symbol<br />
symbol : class URL<br />
location: class cleanwv.net<br />
wb.setURL(new URL(jTextField1.getText()));<br />
1 error</p>
<p>Can you help me out, since vrealy love the simplicity of application!</p>
<p>Beginner, Goran</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vipin</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-2978</link>
		<dc:creator>vipin</dc:creator>
		<pubDate>Sat, 28 Nov 2009 10:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-2978</guid>
		<description>thanks its working.

is there any option to close a single page at a time.</description>
		<content:encoded><![CDATA[<p>thanks its working.</p>
<p>is there any option to close a single page at a time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aswin Anand</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-2407</link>
		<dc:creator>Aswin Anand</dc:creator>
		<pubDate>Wed, 08 Jul 2009 19:15:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-2407</guid>
		<description>Wasif, compile the source code with the jdic library in class path. It should work then.</description>
		<content:encoded><![CDATA[<p>Wasif, compile the source code with the jdic library in class path. It should work then.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wasif</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-2406</link>
		<dc:creator>wasif</dc:creator>
		<pubDate>Tue, 07 Jul 2009 15:01:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-2406</guid>
		<description>i had tried your code every thing is working but web page is not displayed and follwing messages in run window are displayed

Exception in thread &quot;AWT-EventQueue-0&quot; java.lang.UnsatisfiedLinkError: no jdic in java.library.path
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1709)
        at java.lang.Runtime.loadLibrary0(Runtime.java:823)
        at java.lang.System.loadLibrary(System.java:1030)
        at org.jdesktop.jdic.init.JdicManager$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.jdesktop.jdic.init.JdicManager.loadLibrary(Unknown Source)
        at org.jdesktop.jdic.browser.WebBrowser.(Unknown Source)</description>
		<content:encoded><![CDATA[<p>i had tried your code every thing is working but web page is not displayed and follwing messages in run window are displayed</p>
<p>Exception in thread &#8220;AWT-EventQueue-0&#8243; java.lang.UnsatisfiedLinkError: no jdic in java.library.path<br />
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1709)<br />
        at java.lang.Runtime.loadLibrary0(Runtime.java:823)<br />
        at java.lang.System.loadLibrary(System.java:1030)<br />
        at org.jdesktop.jdic.init.JdicManager$1.run(Unknown Source)<br />
        at java.security.AccessController.doPrivileged(Native Method)<br />
        at org.jdesktop.jdic.init.JdicManager.loadLibrary(Unknown Source)<br />
        at org.jdesktop.jdic.browser.WebBrowser.(Unknown Source)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sialyn</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-2031</link>
		<dc:creator>Sialyn</dc:creator>
		<pubDate>Mon, 23 Mar 2009 08:57:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-2031</guid>
		<description>Thank you!!

I solved this problem when I downloaded it a more fresh jdic version.

Now I have another problem when I use this browser with google maps (my own google-map application) it throws a runtime exception &quot;GMap2 is not defined&quot;. I read it and it&#039;s a java script problema, probably.

The ideas are wellcome!! 

Thank you</description>
		<content:encoded><![CDATA[<p>Thank you!!</p>
<p>I solved this problem when I downloaded it a more fresh jdic version.</p>
<p>Now I have another problem when I use this browser with google maps (my own google-map application) it throws a runtime exception &#8220;GMap2 is not defined&#8221;. I read it and it&#8217;s a java script problema, probably.</p>
<p>The ideas are wellcome!! </p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aswin Anand</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-2030</link>
		<dc:creator>Aswin Anand</dc:creator>
		<pubDate>Mon, 23 Mar 2009 06:59:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-2030</guid>
		<description>Sialyn, this problem could occur when the OS&#039; browser object couldn&#039;t be embedded in the app. In windows, internet explorer works perfectly &amp; firefox creates some problems regarding the same.</description>
		<content:encoded><![CDATA[<p>Sialyn, this problem could occur when the OS&#8217; browser object couldn&#8217;t be embedded in the app. In windows, internet explorer works perfectly &amp; firefox creates some problems regarding the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sialyn</title>
		<link>http://www.aswinanand.com/2006/03/two-minute-web-browser-in-java/comment-page-1/#comment-2024</link>
		<dc:creator>Sialyn</dc:creator>
		<pubDate>Fri, 20 Mar 2009 10:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.aswinanand.com/blog/2006/03/07/two-minute-web-browser-in-java/#comment-2024</guid>
		<description>Sorry, I find de solution!! You have to write the complete URL with http. (i&#039;m a fool)

The programa give me another error, don&#039;t show me the web and give this message: &quot;Can&#039;t execute native browser. ErrMsg is null&quot;.

Could you tell me what is the reason?

Thank you!!!</description>
		<content:encoded><![CDATA[<p>Sorry, I find de solution!! You have to write the complete URL with http. (i&#8217;m a fool)</p>
<p>The programa give me another error, don&#8217;t show me the web and give this message: &#8220;Can&#8217;t execute native browser. ErrMsg is null&#8221;.</p>
<p>Could you tell me what is the reason?</p>
<p>Thank you!!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

