<?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>My stuff &#187; Java</title>
	<atom:link href="http://michelhollands.net/blog/index.php/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://michelhollands.net/blog</link>
	<description>Tech and travel tidbits</description>
	<lastBuildDate>Tue, 13 Dec 2011 09:59:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Check if Java is installed in Oracle</title>
		<link>http://michelhollands.net/blog/2007/06/06/check-if-java-is-installed-in-oracle/</link>
		<comments>http://michelhollands.net/blog/2007/06/06/check-if-java-is-installed-in-oracle/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 15:52:49 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://michelhollands.net/blog/2007/06/06/check-if-java-is-installed-in-oracle/</guid>
		<description><![CDATA[If you want to know if Java is installed, use the following SQL : select * from dba_registry; There should be an entry with comp_id equal to &#8216;JAVAVM&#8217;.]]></description>
			<content:encoded><![CDATA[<p>If you want to know if Java is installed, use the following SQL :</p>
<pre>
  select * from dba_registry;
</pre>
<p>There should be an entry with comp_id equal to &#8216;JAVAVM&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://michelhollands.net/blog/2007/06/06/check-if-java-is-installed-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jwhich : which for Java</title>
		<link>http://michelhollands.net/blog/2002/10/24/jwhich-which-for-java/</link>
		<comments>http://michelhollands.net/blog/2002/10/24/jwhich-which-for-java/#comments</comments>
		<pubDate>Thu, 24 Oct 2002 10:36:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://michelhollands.net/blog/2002/10/24/jwhich-which-for-java/</guid>
		<description><![CDATA[This little ksh script can be used to find which class file is in which jar file in the current directory. Useful if you have a lib directory full of jar files and your program says &#8216;cannot find class xxx&#8217;. for jarfile in `ls *.jar` do echo $jarfile &#34;:&#34;; jar tf $jarfile &#124; grep -i [...]]]></description>
			<content:encoded><![CDATA[<p>This little ksh script can be used to find which class file is in which jar file in the current directory. Useful if you have a lib directory full of jar files and your program says &#8216;cannot find class xxx&#8217;.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">   <span style="color: #000000; font-weight: bold;">for</span> jarfile <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #000000; font-weight: bold;">*</span>.jar<span style="color: #000000; font-weight: bold;">`</span>
   <span style="color: #000000; font-weight: bold;">do</span>
      <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$jarfile</span> <span style="color: #ff0000;">&quot;:&quot;</span>;
      jar tf <span style="color: #007800;">$jarfile</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-i</span> <span style="color: #007800;">$1</span>;
   <span style="color: #000000; font-weight: bold;">done</span>;</pre></div></div>

<p>Save this to a file (eg jwhich), set the permissions to execute. make sure it is on the path and then type :</p>
<pre>   > jwhich customer</pre>
<p>This will show a list of all the jar files and the classes that have a name with customer in it.</p>
]]></content:encoded>
			<wfw:commentRss>http://michelhollands.net/blog/2002/10/24/jwhich-which-for-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.383 seconds -->

