<?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 for Computer FAQs &amp; Tips</title>
	<atom:link href="http://www.computer-faqs.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.computer-faqs.com</link>
	<description>Answers to your Questions, Tips to enhance your Experience</description>
	<lastBuildDate>Sun, 19 Jul 2009 12:40:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on 4 Free Antivirus Software by AntiVirus Protection Blogg</title>
		<link>http://www.computer-faqs.com/2009/01/03/4-free-antivirus-softwares/comment-page-1/#comment-1514</link>
		<dc:creator>AntiVirus Protection Blogg</dc:creator>
		<pubDate>Sun, 19 Jul 2009 12:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=353#comment-1514</guid>
		<description>[...] Computer FAQs &amp; Tips » 4 Free Antivirus Softwares [...]</description>
		<content:encoded><![CDATA[<p>[...] Computer FAQs &amp; Tips » 4 Free Antivirus Softwares [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read and Write Properties file in Java by Manet Yim</title>
		<link>http://www.computer-faqs.com/2008/09/03/java-read-write-properties-file/comment-page-1/#comment-1507</link>
		<dc:creator>Manet Yim</dc:creator>
		<pubDate>Sat, 06 Jun 2009 07:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=51#comment-1507</guid>
		<description>&lt;a href=&quot;#comment-1501&quot; rel=&quot;nofollow&quot;&gt;@Horia Constantin&lt;/a&gt; 
Glade you find it useful :)

Thanks for the comment.</description>
		<content:encoded><![CDATA[<p><a href="#comment-1501" rel="nofollow">@Horia Constantin</a><br />
Glade you find it useful :)</p>
<p>Thanks for the comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generate Random Password in Java by Manet Yim</title>
		<link>http://www.computer-faqs.com/2009/01/16/generate-random-password-in-java/comment-page-1/#comment-1506</link>
		<dc:creator>Manet Yim</dc:creator>
		<pubDate>Sat, 06 Jun 2009 07:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=599#comment-1506</guid>
		<description>Kyrre, that was because of this loop
&lt;code&gt;for (int i = 0; i &lt;= length; i++)&lt;/code&gt;. 
A silly logic loop :) It must be the typo when i updated the post.</description>
		<content:encoded><![CDATA[<p>Kyrre, that was because of this loop<br />
<code>for (int i = 0; i &lt;= length; i++)</code>.<br />
A silly logic loop :) It must be the typo when i updated the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java: How to convert String to array? by Manet Yim</title>
		<link>http://www.computer-faqs.com/2009/02/11/java-how-to-convert-string-to-array/comment-page-1/#comment-1505</link>
		<dc:creator>Manet Yim</dc:creator>
		<pubDate>Fri, 05 Jun 2009 13:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=613#comment-1505</guid>
		<description>Uma, thanks for the comment. 
By all means you can use StringTokenizer to implement your own java function. 
The implementation of this class in this post was to use only native code (without importing any java generic class) and to demo the algorithm. The same code can be easily translated into another language (which might not have StringTokenizer).</description>
		<content:encoded><![CDATA[<p>Uma, thanks for the comment.<br />
By all means you can use StringTokenizer to implement your own java function.<br />
The implementation of this class in this post was to use only native code (without importing any java generic class) and to demo the algorithm. The same code can be easily translated into another language (which might not have StringTokenizer).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generate Random Password in Java by Kyrre</title>
		<link>http://www.computer-faqs.com/2009/01/16/generate-random-password-in-java/comment-page-1/#comment-1504</link>
		<dc:creator>Kyrre</dc:creator>
		<pubDate>Thu, 04 Jun 2009 12:39:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=599#comment-1504</guid>
		<description>Actually, the passwords you generate are all 11 characters, not 10. This is because you use i &lt;= charset.length() in your for-loop. This should be i &lt; charset.length, I believe.</description>
		<content:encoded><![CDATA[<p>Actually, the passwords you generate are all 11 characters, not 10. This is because you use i &lt;= charset.length() in your for-loop. This should be i &lt; charset.length, I believe.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java: How to convert String to array? by Uma</title>
		<link>http://www.computer-faqs.com/2009/02/11/java-how-to-convert-string-to-array/comment-page-1/#comment-1502</link>
		<dc:creator>Uma</dc:creator>
		<pubDate>Thu, 04 Jun 2009 02:13:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=613#comment-1502</guid>
		<description>I am new here, just curious why the StringTokenizer is not used? 

StringTokenizer st = new StringTokenizer(this.wordsToCount);
stringArray = new String[st.countTokens()];
int i =0;

while(st.hasMoreTokens())
 {
   stringArray[i] = st.nextToken();
   i++;
 }</description>
		<content:encoded><![CDATA[<p>I am new here, just curious why the StringTokenizer is not used? </p>
<p>StringTokenizer st = new StringTokenizer(this.wordsToCount);<br />
stringArray = new String[st.countTokens()];<br />
int i =0;</p>
<p>while(st.hasMoreTokens())<br />
 {<br />
   stringArray[i] = st.nextToken();<br />
   i++;<br />
 }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read and Write Properties file in Java by Horia Constantin</title>
		<link>http://www.computer-faqs.com/2008/09/03/java-read-write-properties-file/comment-page-1/#comment-1501</link>
		<dc:creator>Horia Constantin</dc:creator>
		<pubDate>Wed, 03 Jun 2009 16:34:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=51#comment-1501</guid>
		<description>Wow, thanks for providing this class. It certainly takes a load of my mind. It&#039;s easier and more convenient Thanks again.

Warm wishes,
Horia</description>
		<content:encoded><![CDATA[<p>Wow, thanks for providing this class. It certainly takes a load of my mind. It&#8217;s easier and more convenient Thanks again.</p>
<p>Warm wishes,<br />
Horia</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generate Random Password in Java by Manet Yim</title>
		<link>http://www.computer-faqs.com/2009/01/16/generate-random-password-in-java/comment-page-1/#comment-569</link>
		<dc:creator>Manet Yim</dc:creator>
		<pubDate>Sat, 28 Feb 2009 05:50:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=599#comment-569</guid>
		<description>Thanks Kartsten for pointing out. The original charset in my project was 15 characters. But your suggestion on charset.length() is definitely more useful. 
I&#039;ll update the code.</description>
		<content:encoded><![CDATA[<p>Thanks Kartsten for pointing out. The original charset in my project was 15 characters. But your suggestion on charset.length() is definitely more useful.<br />
I&#8217;ll update the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generate Random Password in Java by Karsten Husberg</title>
		<link>http://www.computer-faqs.com/2009/01/16/generate-random-password-in-java/comment-page-1/#comment-561</link>
		<dc:creator>Karsten Husberg</dc:creator>
		<pubDate>Fri, 27 Feb 2009 17:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=599#comment-561</guid>
		<description>By using the magic number 15 in
int pos = rand.nextInt(15);
you&#039;ll only use the first 15 chars in your charset.

I think you&#039;d like to have something like 
int pos = rand.nextInt(charset.length());</description>
		<content:encoded><![CDATA[<p>By using the magic number 15 in<br />
int pos = rand.nextInt(15);<br />
you&#8217;ll only use the first 15 chars in your charset.</p>
<p>I think you&#8217;d like to have something like<br />
int pos = rand.nextInt(charset.length());</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read and Write Properties file in Java by Manet Yim</title>
		<link>http://www.computer-faqs.com/2008/09/03/java-read-write-properties-file/comment-page-1/#comment-151</link>
		<dc:creator>Manet Yim</dc:creator>
		<pubDate>Wed, 28 Jan 2009 08:10:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.computer-faqs.com/?p=51#comment-151</guid>
		<description>First thing you could try is using absolute path to you st1.properties.
eg c:\temp\folder\st1.properties

Which IDE you are are using? if you use eclipse you can place your st1.properties under PROJECT_HOME\properties\st1.properties
When you test-run, you can use &quot;properties\st1.properties&quot;.

Otherwise tell me how you run this class, I&#039;ll help you further</description>
		<content:encoded><![CDATA[<p>First thing you could try is using absolute path to you st1.properties.<br />
eg c:\temp\folder\st1.properties</p>
<p>Which IDE you are are using? if you use eclipse you can place your st1.properties under PROJECT_HOME\properties\st1.properties<br />
When you test-run, you can use &#8220;properties\st1.properties&#8221;.</p>
<p>Otherwise tell me how you run this class, I&#8217;ll help you further</p>
]]></content:encoded>
	</item>
</channel>
</rss>
