<?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>Technobuz &#187; Editing the Windows Registry with Java</title>
	<atom:link href="http://technobuz.com/tag/editing-the-windows-registry-with-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://technobuz.com</link>
	<description>For blog tips,Templates ,hacks ,programming fun and tweaks.</description>
	<lastBuildDate>Wed, 25 Aug 2010 18:12:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to use Windows API in Java?-Solution</title>
		<link>http://technobuz.com/2009/07/how-to-use-windows-api-in-java/</link>
		<comments>http://technobuz.com/2009/07/how-to-use-windows-api-in-java/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 07:27:59 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[How's]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[T'tips]]></category>
		<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[access  Windows Registry with Java]]></category>
		<category><![CDATA[access windows registry using Java]]></category>
		<category><![CDATA[Accessing Windows Registry From Java Example]]></category>
		<category><![CDATA[API for accessing the windows registry using Java]]></category>
		<category><![CDATA[API to access Windows registry via JAVA]]></category>
		<category><![CDATA[calling Win32 API from Java]]></category>
		<category><![CDATA[calling Windows API from Java]]></category>
		<category><![CDATA[Editing the Windows Registry with Java]]></category>
		<category><![CDATA[how to access windows registry from Java]]></category>
		<category><![CDATA[how to use windows api in java programming]]></category>
		<category><![CDATA[How to use Windows API in Java?]]></category>
		<category><![CDATA[using win32 api in java]]></category>
		<category><![CDATA[win32 api in java]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=1518</guid>
		<description><![CDATA[
			
				
			
		
We all know that Win32 API&#8217;s are Powerful and provide great features and ability from getting Window handles,Spawning new process,killing process ,Send Keystrokes ,Tweaking Registry, Logging lots and lots more.
But how to use Windows API in Java ,this is sure to make your Java Application Power packaged and versatile  and also eases your work.It [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F07%2Fhow-to-use-windows-api-in-java%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F07%2Fhow-to-use-windows-api-in-java%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="How to use Windows API in Java? Solution" alt=" How to use Windows API in Java? Solution" /><br />
			</a>
		</div>
<p>We all know that Win32 API&#8217;s are Powerful and provide great features and ability from getting <strong>Window handles,Spawning new process,killing process ,Send Keystrokes ,Tweaking Registry, Logging</strong> lots and lots more.</p>
<p>But how to use Windows API in Java ,this is sure to make your <strong>Java Application Power packaged and versatile  </strong>and also eases your work.It will be really useful for those who write Java Application for Windows Platform.</p>
<h4><strong>How to use Win32 API in Java? </strong><br />
<h4>
<div class="testing">
<p>1.Visit this page <a rel="nofollow" href="http://www.jamesyoung1.com/jDownloadsV2.shtml">http://www.jamesyoung1.com/jDownloadsV2.shtml</a></p>
<p>2.Download copy of JWinAPI .<a rel="nofollow" href="http://www.jamesyoung1.com/downloadRedirectV2.php?url=downloads/setupT.exe">JWinAPI Download</a></p>
<p>3.Install the setup.And you are Ready to go.</p>
<p>4.Include JWinAPI.jar in your Project Library.</p>
<p>5.Done!
  </p></div>
<p><strong>Demo :</strong></p>
<p>For Demo Go to the directory where you have installed JWinAPI. Type:</p>
<pre class="brush: java;">&lt;strong&gt;java -jar JWinAPI.jar &lt;/strong&gt;</pre>
<p><strong>Demo Code of how to use JWinAPI:</strong></p>
<p><u><strong>Poping up Message Box:</strong></u></p>
<pre class="brush: java;">
WinAPI wapi = new JWinAPI();
	wapi.doMessageBox(&quot;JWinAPI DLL has been loaded successfully!&quot;,
			&quot;JWinAPI&quot;, MBConstants.MB_OK + MBConstants.MB_ICONASTERISK );
</pre>
<p><u><strong>Accessing Windows Registry From Java Example</strong></u></p>
<pre class="brush: java;">
// write an int value
	wapi.doWriteToRegistry(REGConstants.HKEY_CURRENT_USER,
		&quot;Software\\jamesyoung\\regsample&quot;,
		&quot;javaINTValue&quot;,	REGConstants.REG_DWORD, new Integer(123456 ) ) ;
</pre>
<p><strong>See what are the functions  supported by JWinAPI:</strong></p>
<p><a rel="nofollow" href="http://www.jamesyoung1.com/jwinapi/doc/index.html">JWinAPI Doc</a></p>
<h4><strong>Hope it was Useful!</strong><br />
<h4>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;title=How+to+use+Windows+API+in+Java%3F-Solution" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;title=How+to+use+Windows+API+in+Java%3F-Solution" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;title=How+to+use+Windows+API+in+Java%3F-Solution" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=How+to+use+Windows+API+in+Java%3F-Solution+-+http://b2l.me/uzhmt+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2009/07/how-to-use-windows-api-in-java/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;title=How+to+use+Windows+API+in+Java%3F-Solution" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;title=How+to+use+Windows+API+in+Java%3F-Solution&amp;summary=We%20all%20know%20that%20Win32%20API%27s%20are%20Powerful%20and%20provide%20great%20features%20and%20ability%20from%20getting%20Window%20handles%2CSpawning%20new%20process%2Ckilling%20process%20%2CSend%20Keystrokes%20%2CTweaking%20Registry%2C%20Logging%20lots%20and%20lots%20more.%0D%0A%0D%0ABut%20how%20to%20use%20Windows%20API%20in%20Java%20%2Cthis%20is%20sure%20to%20make%20your%20Java%20Application%20Power%20p&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;title=How+to+use+Windows+API+in+Java%3F-Solution" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+use+Windows+API+in+Java%3F-Solution&amp;du=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;cn=We%20all%20know%20that%20Win32%20API%27s%20are%20Powerful%20and%20provide%20great%20features%20and%20ability%20from%20getting%20Window%20handles%2CSpawning%20new%20process%2Ckilling%20process%20%2CSend%20Keystrokes%20%2CTweaking%20Registry%2C%20Logging%20lots%20and%20lots%20more.%0D%0A%0D%0ABut%20how%20to%20use%20Windows%20API%20in%20Java%20%2Cthis%20is%20sure%20to%20make%20your%20Java%20Application%20Power%20p" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;n=How+to+use+Windows+API+in+Java%3F-Solution&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;title=How+to+use+Windows+API+in+Java%3F-Solution&amp;desc=We%20all%20know%20that%20Win32%20API%27s%20are%20Powerful%20and%20provide%20great%20features%20and%20ability%20from%20getting%20Window%20handles%2CSpawning%20new%20process%2Ckilling%20process%20%2CSend%20Keystrokes%20%2CTweaking%20Registry%2C%20Logging%20lots%20and%20lots%20more.%0D%0A%0D%0ABut%20how%20to%20use%20Windows%20API%20in%20Java%20%2Cthis%20is%20sure%20to%20make%20your%20Java%20Application%20Power%20p" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;title=How+to+use+Windows+API+in+Java%3F-Solution" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2009/07/how-to-use-windows-api-in-java/&amp;bm_description=How+to+use+Windows+API+in+Java%3F-Solution&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2009/07/how-to-use-windows-api-in-java/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
