 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; Java developers</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/java-developers/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Sat, 18 May 2013 00:58:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Java JTable scrolling actions</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/java-jtable-scrolling-actions/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/java-jtable-scrolling-actions/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 06:42:40 +0000</pubDate>
		<dc:creator>Sathich123c</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java applications]]></category>
		<category><![CDATA[Java Database]]></category>
		<category><![CDATA[Java developers]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi..I am using a JTable in java for listing the values from database. I need something like, I need to list few set of values in the JTable. And when we scroll down or scroll up using scroll pane of JTable, next set of values must be loaded from database. so that instead of loading [...]]]></description>
				<content:encoded><![CDATA[<p>Hi..I am using a JTable in java for listing the values from database.<br />
I need something like, I need to list few set of values in the JTable. And when we scroll down or scroll up using scroll pane of JTable, next set of values must be loaded from database. so that instead of loading all values, i can list few values and scrolling action will retrieve next range of values.<br />
How can I do this? Can any one suggest me an idea for this?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/java-jtable-scrolling-actions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need a good start to learn Java</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/need-a-good-start-to-learn-java/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/need-a-good-start-to-learn-java/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 10:52:23 +0000</pubDate>
		<dc:creator>senmalar</dc:creator>
				<category><![CDATA[IT Books]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Java developers]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Question Edited by hussain22juzer]]></description>
				<content:encoded><![CDATA[Question Edited by hussain22juzer]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/need-a-good-start-to-learn-java/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Change password through JDBC</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/change-password-through-jdbc/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/change-password-through-jdbc/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 10:19:08 +0000</pubDate>
		<dc:creator>Srinivas2044</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Database]]></category>
		<category><![CDATA[Java developers]]></category>
		<category><![CDATA[JDBC]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[hi can any one help me .. how to change a password reset/ change password through JDBC connections specifications: 1)we are going to change password from front end URL 2)we need to connect through Db2 database through JDBC connections]]></description>
				<content:encoded><![CDATA[<p>hi can any one help me .. how to change a password reset/ change password through  JDBC connections<br />
specifications:<br />
1)we are going to change password from front end URL<br />
2)we need to connect through Db2 database through JDBC connections</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/change-password-through-jdbc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Errors printing Java code</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/create-an-uppercase/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/create-an-uppercase/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 12:48:51 +0000</pubDate>
		<dc:creator>Kuranharuka</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java applications]]></category>
		<category><![CDATA[Java code]]></category>
		<category><![CDATA[Java developers]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I tried to create an upperclass code, but it seem like it doesn&#8217;t want to print out. Here is my code: import java.io.*; import java.io.File; import java.io.FileNotFoundException; import java.io.PrintWriter; import java.util.Scanner; public class upperCase { public static void main(String[]args) { Scanner in = null; PrintWriter out = null; try { File file = new File("Chapter9.txt"); [...]]]></description>
				<content:encoded><![CDATA[<p>I tried to create an upperclass code, but it seem like it doesn&#8217;t want to print out. Here is my code:
<pre> import java.io.*; import java.io.File; import java.io.FileNotFoundException; import java.io.PrintWriter; import java.util.Scanner; public class upperCase { public static void main(String[]args) { Scanner in = null; PrintWriter out = null; try { File file = new File("Chapter9.txt"); in = new Scanner(file); out = new PrintWriter("output.txt"); } catch (FileNotFoundException ex) { System.out.println(ex.getMessage()); System.out.println("in" + System.getProperty("user.dir")); System.exit(1); } while(in.hasNextLine()) { String record = in.nextLine(); if (record.indexOf("bwbecker") &gt;= 0) { String upper = record.toUpperCase(); System.out.println(upper); System.out.println("output.txt"); } } //Close the file in.close(); out.close(); } } </pre>
<p> Can anyone help me?? Thank You!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/create-an-uppercase/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>null v/s &#8221; &#8220;(empty string) in Java</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/null-vs-empty-string/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/null-vs-empty-string/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 05:11:56 +0000</pubDate>
		<dc:creator>Prcvjr</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java code]]></category>
		<category><![CDATA[Java developers]]></category>
		<category><![CDATA[NULL]]></category>
		<category><![CDATA[String name]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Discussion Post by]]></description>
				<content:encoded><![CDATA[New Discussion Post by ]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/null-vs-empty-string/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Java development career</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/java-7/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/java-7/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 14:53:05 +0000</pubDate>
		<dc:creator>Himanshu7002</dc:creator>
				<category><![CDATA[IT careers]]></category>
		<category><![CDATA[Java developers]]></category>
		<category><![CDATA[Java development]]></category>
		<category><![CDATA[Java/J2EE]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[i am student of doeacc society i want a job in it and i am complete my java development and i have done scjp exam how to improve my resume]]></description>
				<content:encoded><![CDATA[<p>i am student of doeacc society i want a job in<br />
it and i am complete my java development and i have done scjp exam how to improve<br />
my resume</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/java-7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Creating interactive database in Java</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-interactive-database-in-java/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/creating-interactive-database-in-java/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 17:06:20 +0000</pubDate>
		<dc:creator>Singla</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java applications]]></category>
		<category><![CDATA[Java Database]]></category>
		<category><![CDATA[Java developers]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[i want to create a database to store the data and access it in an interactive manner. that is i should be able to randomly access the particular entry directly. a complete graphical application type&#8230;&#8230;!!!! i need your direction]]></description>
				<content:encoded><![CDATA[<p>i want to create a database to store the data and access it in an interactive manner.<br />
that is i should be able to randomly access the particular entry directly.<br />
a complete graphical application type&#8230;&#8230;!!!!<br />
i need your direction</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/creating-interactive-database-in-java/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java files compilation</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/java-files-compilation/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/java-files-compilation/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 06:47:58 +0000</pubDate>
		<dc:creator>Chintamaneni</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java classes]]></category>
		<category><![CDATA[Java code]]></category>
		<category><![CDATA[Java developers]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[if we two files are placed at deferent drives and one file is related to another file (One file is complied individually), in that 2nd file first file object will be created. how to compile the java program  - PLESE HELP ME  regards  Rajeshbabu Chintamaneni 9985 555 678   ]]></description>
				<content:encoded><![CDATA[<p>if we two files are placed at deferent drives and one file is related to another file (One file is complied individually), in that 2nd file first file object will be created. how to compile the java program </p>
<div>- PLESE HELP ME</div>
<div> regards </div>
<div>	Rajeshbabu Chintamaneni	</div>
<div>	9985 555 678   </div>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/java-files-compilation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suggestions for intranet creation</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/suggestions-for-intranet-creation/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/suggestions-for-intranet-creation/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 19:44:36 +0000</pubDate>
		<dc:creator>ITKE</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Intranet]]></category>
		<category><![CDATA[Java developers]]></category>
		<category><![CDATA[Open source applications]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[What is the best free open source application to use to create our intranet? We have HTML and Java developers on hand but would rather use a package. Is there anything out there that is customizable and easy to use? We need to have a file area, a forum and blog posts.]]></description>
				<content:encoded><![CDATA[<p>What is the best free open source application to use to create our intranet? We have HTML and Java developers on hand but would rather use a package. Is there anything out there that is customizable and easy to use? We need to have a file area, a forum and blog posts.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/suggestions-for-intranet-creation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What is a software framework?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/what-is-a-software-framework/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/what-is-a-software-framework/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 14:53:28 +0000</pubDate>
		<dc:creator>Snc</dc:creator>
				<category><![CDATA[Java developers]]></category>
		<category><![CDATA[JavaScript Frameworks]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Software quality management]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Answer by Michael Tidmarsh]]></description>
				<content:encoded><![CDATA[New Answer by Michael Tidmarsh]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/what-is-a-software-framework/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/26 queries in 0.037 seconds using memcached
Object Caching 929/1034 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-18 10:34:51 -->