<?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>SWT &#8211; 記下來</title>
	<atom:link href="https://noter.tw/tag/swt/feed/" rel="self" type="application/rss+xml" />
	<link>https://noter.tw</link>
	<description>一路上踩到的坑、遇到的問題，一點一滴記下來，希望能幫助到需要的人~</description>
	<lastBuildDate>Fri, 11 Mar 2022 06:11:35 +0000</lastBuildDate>
	<language>zh-TW</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.3</generator>

<image>
	<url>https://noter.tw/wp-content/uploads/cropped-old-1130742_1920-1-32x32.jpg</url>
	<title>SWT &#8211; 記下來</title>
	<link>https://noter.tw</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>SWT Class -&#062; JAR -&#062; EXE</title>
		<link>https://noter.tw/1255/swt-class-jar-exe/</link>
					<comments>https://noter.tw/1255/swt-class-jar-exe/#respond</comments>
		
		<dc:creator><![CDATA[黃小蛙]]></dc:creator>
		<pubDate>Sat, 03 Dec 2011 23:35:42 +0000</pubDate>
				<category><![CDATA[一般程式]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[fatjar]]></category>
		<category><![CDATA[jar to exe]]></category>
		<category><![CDATA[jar2exe]]></category>
		<category><![CDATA[SWT]]></category>
		<category><![CDATA[Eclipse]]></category>
		<guid isPermaLink="false">http://69.163.37.35/?p=1255</guid>

					<description><![CDATA[<p>讓 SWT Class 封裝出來的 JAR 檔可以直接滑鼠擊點兩下就執行，試了好久，終於 … 這篇文章記錄讓 SWT Class 封裝成可以直接點兩下就執行的 JAR file (eclipse fa&#46;&#46;&#46;</p>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/1255/swt-class-jar-exe/" data-wpel-link="internal">SWT Class -&#062; JAR -&#062; EXE</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></description>
										<content:encoded><![CDATA[<p>讓 SWT Class 封裝出來的 JAR 檔可以直接滑鼠擊點兩下就執行，試了好久，終於 … 這篇文章記錄讓 SWT Class 封裝成可以直接點兩下就執行的 JAR file (eclipse fat-jar plug-in)，並且把它轉成 EXE file (JSmooth)。<br />
<span id="more-1255"></span></p>
<h2>● 安裝 eclipse fat-jar 外掛</h2>
<p style="padding-left: 30px;">1. 下載 fat-jar plug-in。<a href="http://fjep.sourceforge.net/" target="_blank" rel="noopener noreferrer nofollow external" data-wpel-link="external" class="wpel-icon-right">下載頁面<span class="wpel-icon wpel-image wpel-icon-6"></span></a>。</p>
<p style="padding-left: 30px;">2. 解壓縮下載回來的檔案，得到 net.sf.fjep.fatjar_0.0.31.jar，把這個檔案附置到 eclipse 安裝目錄下的 plugins 目錄裡。</p>
<p style="padding-left: 30px;">3. 開啟 eclipse，在專案上按滑鼠右鍵，出現 Build Fat Jar 表示安裝完成。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/fatjar1.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-1309" title="fatjar1" src="https://noter.tw/wp-content/uploads/2011/12/fatjar1.png" alt="fatjar1 SWT Class -&#062; JAR -&#062; EXE" width="330" height="682"></a></p>
<h2>● <strong>用 fat-jar 產生 JAR file</strong></h2>
<ol>
<li>要產生可以直接執行的 JAR file，必須要一併封裝比較新版本的 swt，這邊我們使用 3.4 final release 版本，3.4 把一些必須的 dll 檔都包含在 jar file 裡面。<a href="http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/R-3.4-200806172000/swt-3.4-win32-win32-x86.zip" target="_blank" rel="noopener noreferrer nofollow external" data-wpel-link="external" class="wpel-icon-right">下載頁面<span class="wpel-icon wpel-image wpel-icon-6"></span></a>。</li>
<li>下載完後，隨便解壓縮到一個資料夾就可以了。接著在專案上點選滑鼠右鍵，選擇新增外部保存檔。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/fatjar3.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1310" title="fatjar3" src="https://noter.tw/wp-content/uploads/2011/12/fatjar3.png" alt="fatjar3 SWT Class -&#062; JAR -&#062; EXE" width="444" height="563"></a></li>
<li>選擇剛剛解壓縮完的資料夾，裡面有個 swt.jar，按下開啟舊檔。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/fatjar4.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1311" title="fatjar4" src="https://noter.tw/wp-content/uploads/2011/12/fatjar4.png" alt="fatjar4 SWT Class -&#062; JAR -&#062; EXE" width="445" height="350"></a></li>
<li>在 eclipse 左側看到已經引入外部套件。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/fatjar5.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1312" title="fatjar5" src="https://noter.tw/wp-content/uploads/2011/12/fatjar5.png" alt="fatjar5 SWT Class -&#062; JAR -&#062; EXE" width="284" height="348"></a></li>
<li>在專案上點滑鼠右鍵，接著選擇 Build Fat Jar。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/fatjar1.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-1309" title="fatjar1" src="https://noter.tw/wp-content/uploads/2011/12/fatjar1.png" alt="fatjar1 SWT Class -&#062; JAR -&#062; EXE" width="330" height="682"></a></li>
<li>更改 Jar-Name，並選擇 Main-Class，點選下一步。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/fatjar2.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1313" title="fatjar2" src="https://noter.tw/wp-content/uploads/2011/12/fatjar2.png" alt="fatjar2 SWT Class -&#062; JAR -&#062; EXE" width="446" height="452"></a></li>
<li>使用我們剛導入的 swt.jar 並且取消原本版本較舊的 swt。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/fatjar6.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1314" title="fatjar6" src="https://noter.tw/wp-content/uploads/2011/12/fatjar6.png" alt="fatjar6 SWT Class -&#062; JAR -&#062; EXE" width="446" height="452"></a></li>
<li>按下完成後，就可以在專案的資料夾裡找到剛剛建立的 test-fat.jar。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/fatjar7.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1315" title="fatjar7" src="https://noter.tw/wp-content/uploads/2011/12/fatjar7.png" alt="fatjar7 SWT Class -&#062; JAR -&#062; EXE" width="446" height="446"></a></li>
<li>滑鼠擊點兩下，可以正確執行。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/30.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1316" title="30" src="https://noter.tw/wp-content/uploads/2011/12/30.png" alt="30 SWT Class -&#062; JAR -&#062; EXE" width="300" height="200"></a></li>
</ol>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/1255/swt-class-jar-exe/" data-wpel-link="internal">SWT Class -&#062; JAR -&#062; EXE</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://noter.tw/1255/swt-class-jar-exe/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Eclipse + Visual Editor = SWT Development</title>
		<link>https://noter.tw/1257/eclipse-visual-editor-swt-development/</link>
					<comments>https://noter.tw/1257/eclipse-visual-editor-swt-development/#respond</comments>
		
		<dc:creator><![CDATA[黃小蛙]]></dc:creator>
		<pubDate>Sat, 03 Dec 2011 22:58:02 +0000</pubDate>
				<category><![CDATA[一般程式]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[SWT]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Visual Editor]]></category>
		<guid isPermaLink="false">http://69.163.37.35/?p=1257</guid>

					<description><![CDATA[<p>這篇文章小蛙整理以前(2009年)的文章，主要內容是記錄怎樣使用外掛 Visual Editor 讓 Eclipse 可以用拖拉的方式來撰寫圖形化程式。 ● 安裝 Eclipse + 語言包 下載安裝&#46;&#46;&#46;</p>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/1257/eclipse-visual-editor-swt-development/" data-wpel-link="internal">Eclipse + Visual Editor = SWT Development</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></description>
										<content:encoded><![CDATA[<p>這篇文章小蛙整理以前(2009年)的文章，主要內容是記錄怎樣使用外掛 <span style="color: #ff0000;"><strong>Visual Editor</strong></span> 讓 <span style="color: #ff0000;"><strong>Eclipse</strong></span> 可以用拖拉的方式來撰寫圖形化程式。<br />
<span id="more-1257"></span></p>
<h2>● 安裝 Eclipse + 語言包</h2>
<ol>
<li>下載安裝 Eclipse。(<strong>Visual Editor</strong> final release 1.2 適用於 Eclipse 3.2 版)，所以建議使用 Eclipse 3.2。<a href="http://www.eclipse.org/downloads/" target="_blank" rel="noopener noreferrer nofollow external" data-wpel-link="external" class="wpel-icon-right">Eclipse 下載頁面<span class="wpel-icon wpel-image wpel-icon-6"></span></a>。因為小蛙本身需要做 JSP 的開發，所以直接下載 <strong>Eclipse </strong>+ <strong>Lomboz</strong> 的版本。<a href="http://lomboz.ow2.org/downloads/R-3.2.2_index.php" target="_blank" rel="noopener noreferrer nofollow external" data-wpel-link="external" class="wpel-icon-right">Eclipse + Lomboz 3.2.2 下載頁面<span class="wpel-icon wpel-image wpel-icon-6"></span></a>。</li>
<li>解壓縮(建議把下載回來的壓縮檔先更改名稱，有時候名稱太長在解壓縮的時候會發生錯誤)。解壓縮完後不用安裝就可以直接使用。</li>
<li>如果需要中文介面，可以安裝語言包。<a href="http://archive.eclipse.org/eclipse/downloads/index.php" target="_blank" rel="noopener noreferrer nofollow external" data-wpel-link="external" class="wpel-icon-right">中文化語言包下載頁面<span class="wpel-icon wpel-image wpel-icon-6"></span></a> 。最下面有個 3.2_Language_Packs。</li>
<li>解壓縮完會有 eclipse 資料夾，直接覆蓋原本解出來的 eclipse 資料夾，完成中文套件的安裝。</li>
</ol>
<h2>● 安裝 Visual Editor 插件</h2>
<ol>
<li>Visual Editor 可以讓 Eclipse 直接用滑鼠點選的方式，圖形化勾勒出 GUI 元件的雛形。VE 1.2 插件下載頁面。下載檔名 VE-SDK-1.2.zip 的檔案。</li>
<li>安裝的方法相同，解壓縮出一個 eclipse 資料夾，直接覆蓋過原本的 eclipse 資料夾即可。</li>
</ol>
<h2>● 建立 SWT 類別</h2>
<ol>
<li>開啟 eclipse。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/1.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1270" title="1" src="https://noter.tw/wp-content/uploads/2011/12/1.png" alt="1 Eclipse + Visual Editor = SWT Development" width="108" height="105"></a></li>
<li>歡迎畫面 (Lomboz 版本)<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/2.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1272" title="2" src="https://noter.tw/wp-content/uploads/2011/12/2.jpg" alt="2 Eclipse + Visual Editor = SWT Development" width="445" height="267"></a></li>
<li>選取工作區。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/3.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1273" title="3" src="https://noter.tw/wp-content/uploads/2011/12/3.jpg" alt="3 Eclipse + Visual Editor = SWT Development" width="445" height="254"></a></li>
<li>eclipse 主畫面。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/4.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1274" title="4" src="https://noter.tw/wp-content/uploads/2011/12/4.jpg" alt="4 Eclipse + Visual Editor = SWT Development" width="445" height="341"></a></li>
<li>新建一個 Java 專案。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/5.png" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1275" title="5" src="https://noter.tw/wp-content/uploads/2011/12/5.png" alt="5 Eclipse + Visual Editor = SWT Development" width="310" height="442"></a></li>
<li>輸入專案名稱後按下確定。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/7.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1276" title="7" src="https://noter.tw/wp-content/uploads/2011/12/7.jpg" alt="7 Eclipse + Visual Editor = SWT Development" width="445" height="581"></a></li>
<li>左側可以看到剛剛新增的專案以及載入的套件。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/8.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1277" title="8" src="https://noter.tw/wp-content/uploads/2011/12/8.jpg" alt="8 Eclipse + Visual Editor = SWT Development" width="445" height="341"></a></li>
<li>我們先設定 SWT 必要的程式庫，在專案上按右鍵，點選”配置建置路徑”。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/9.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1278" title="9" src="https://noter.tw/wp-content/uploads/2011/12/9.jpg" alt="9 Eclipse + Visual Editor = SWT Development" width="445" height="651"></a></li>
<li>選擇”新增程式庫”。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/10.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1279" title="10" src="https://noter.tw/wp-content/uploads/2011/12/10.jpg" alt="10 Eclipse + Visual Editor = SWT Development" width="445" height="358"></a></li>
<li>選取 Standard Widget Toolkit (SWT)，下一步。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/12.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1280" title="12" src="https://noter.tw/wp-content/uploads/2011/12/12.jpg" alt="12 Eclipse + Visual Editor = SWT Development" width="445" height="446"></a></li>
<li>點選”完成”。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/13.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1281" title="13" src="https://noter.tw/wp-content/uploads/2011/12/13.jpg" alt="13 Eclipse + Visual Editor = SWT Development" width="445" height="445"></a></li>
<li>看到 SWT 已經增加到這個專案的程式庫裡面了。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/14.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1282" title="14" src="https://noter.tw/wp-content/uploads/2011/12/14.jpg" alt="14 Eclipse + Visual Editor = SWT Development" width="445" height="358"></a></li>
<li>點下確定後回到主畫面，左邊多了 SWT 程式庫。<br />
<a href="https://noter.tw/wp-content/uploads/2011/12/15.jpg" target="_blank" rel="noopener noreferrer" data-wpel-link="internal"><img decoding="async" class="alignnone size-full wp-image-1283" title="15" src="https://noter.tw/wp-content/uploads/2011/12/15.jpg" alt="15 Eclipse + Visual Editor = SWT Development" width="445" height="341"></a></li>
</ol>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/1257/eclipse-visual-editor-swt-development/" data-wpel-link="internal">Eclipse + Visual Editor = SWT Development</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://noter.tw/1257/eclipse-visual-editor-swt-development/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>JAR: Could not find the main class.</title>
		<link>https://noter.tw/2485/jar-could-not-find-the-main-class/</link>
					<comments>https://noter.tw/2485/jar-could-not-find-the-main-class/#respond</comments>
		
		<dc:creator><![CDATA[黃小蛙]]></dc:creator>
		<pubDate>Thu, 16 Jul 2009 03:14:45 +0000</pubDate>
				<category><![CDATA[一般程式]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[SWT]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[JAR: Could not find the main class.]]></category>
		<guid isPermaLink="false">http://wazai.net/?p=2485</guid>

					<description><![CDATA[<p>用 Eclipse + SWT 開發一個英文單字練習工具，忙了半天，想說先在不同電腦中測試既有的功能，在 SWT Class -&#62; JAR -&#62; EXE 文章中提到過，怎麼讓 JAR 可以&#46;&#46;&#46;</p>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/2485/jar-could-not-find-the-main-class/" data-wpel-link="internal">JAR: Could not find the main class.</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></description>
										<content:encoded><![CDATA[
<p>用 <strong>Eclipse + SWT</strong> 開發一個英文單字練習工具，忙了半天，想說先在不同電腦中測試既有的功能，在<strong><a href="https://noter.tw/1255/swt-class-jar-exe/" target="_blank" rel="noreferrer noopener" aria-label=" (在新分頁中開啟)" data-wpel-link="internal"> SWT Class -&gt; JAR -&gt; EXE</a></strong> 文章中提到過，<strong>怎麼讓 JAR 可以轉 EXE 並在不同電腦上執行</strong>，結果 ~ 封裝出來的 FAT-JAR 只能在本機上執行 &#8230; </p>



<span id="more-2485"></span>



<p>把封裝好的 Jar 上傳到筆電會一直出現</p>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">Could not find the main class.</pre>



<p>光看上面的錯誤訊息，找不到 main class?? 明明程式裡面就有 <strong>public static void main(String[] args)</strong>，試過各種方法，程式碼 mark 掉，再慢慢找問題，試了一個下午問題還是存在，在<strong><a rel="noreferrer noopener nofollow external" href="http://yintel.javaeye.com/blog/374842" target="_blank" data-wpel-link="external" class="wpel-icon-right">&nbsp;jar文件Could not find the main class解决办法<span class="wpel-icon wpel-image wpel-icon-6"></span></a></strong>&nbsp;看到一線曙光，沒想到原因竟然是程式<strong>找不到 import 的套件</strong>，跟字面上理解的 main class 完全沒關係。</p>



<p>在 <strong>開始 -&gt; 執行 -&gt; cmd</strong> 下執行 java -jar TEST_fat.jar 後，才從錯誤訊息裡面發現，原來是引用 JMF 套件的時候，並沒有在 Eclipse 裡面指定外部套件，cmd 下的錯誤訊息為：</p>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">C:\&gt; java -jar TEST_fat.jar Exception in thread "main" 
java.lang.NoClassDefFoundError: javax/media/NoPlayerE xception Caused by: 
java.lang.ClassNotFoundException: javax.media.NoPlayerException at 
java.net.URLClassLoader$1.run(Unknown Source) at 
java.security.AccessController.doPrivileged(Native Method) at 
java.net.URLClassLoader.findClass(Unknown Source) at 
java.lang.ClassLoader.loadClass(Unknown Source) at 
sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at 
java.lang.ClassLoader.loadClass(Unknown Source) at 
java.lang.ClassLoader.loadClassInternal(Unknown Source) Could not find the 
main class: vocabulary.TEST. Program will exit.</pre>



<p>這樣就比直接點兩下執行 JAR 檔出現的 &#8220;could not find the main class&#8221; 清楚多了。 </p>



<h3 class="para wp-block-heading">參考資料</h3>



<ul class="my-li bg-darkblue wp-block-list"><li>SWT Class -&gt; JAR -&gt; EXE @ 蛙齋<br> <a href="https://noter.tw/1255/swt-class-jar-exe/" data-wpel-link="internal">https://noter.tw/1255/swt-class-jar-exe/</a> </li><li>jar文件Could not find the main class解决办法 @ 朱紫空间<br><a rel="noreferrer noopener nofollow external" href="http://yintech.iteye.com/blog/374842" target="_blank" data-wpel-link="external" class="wpel-icon-right">http://yintech.iteye.com/blog/374842<span class="wpel-icon wpel-image wpel-icon-6"></span></a></li></ul>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/2485/jar-could-not-find-the-main-class/" data-wpel-link="internal">JAR: Could not find the main class.</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://noter.tw/2485/jar-could-not-find-the-main-class/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
