Eclipseの最初のantビルドに少し問題があります。ここにbuild.xmlビルドファイルがあります。 nat.rutherford.DesktopStarter:Java - Antビルド(Eclipse) - メインクラスが見つかりませんでした:nat.rutherford.DesktopStarter
<project name="Rutherford" default="dist" basedir=".">
<description>
simple example build file
</description>
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
<property name="libs" value="libs"/>
<path id="classpath">
<fileset dir="${libs}" includes="**/*.jar"/>
</path>
<target name="init">
<!-- Create the time stamp -->
<tstamp/>
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init"
description="compile the source " >
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}" classpathref="classpath">
<compilerarg line="-encoding utf-8"/>
</javac>
</target>
<target name="dist" depends="compile"
description="generate the distribution" >
<!-- Create the distribution directory -->
<mkdir dir="${dist}/lib"/>
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar jarfile="${dist}/MyProject-${DSTAMP}.jar" basedir="${build}">
<manifest>
<attribute name="Main-Class" value="nat.rutherford.DesktopStarter"/>
</manifest>
</jar>
</target>
<target name="run">
<java jar="${dist}/MyProject-${DSTAMP}.jar" fork="true"/>
</target>
<target name="clean"
description="clean up" >
<!-- Delete the ${build} and ${dist} directory trees -->
<delete dir="${build}"/>
<delete dir="${dist}"/>
</target>
</project>
「これは警告やエラーなしでOKコンパイルが、私はそれが言うの.jarを実行しようとするには、メインクラスが見つかりませんでした。プログラムは終了」=(
私は、問題のページのトンを読んだことがあるが、これまでのところ、何も決定的ます
私は、Eclipseを使用して、それをコンパイルすることができました - 。>ファイル - >エクスポート - > Javaの - >しかし、私は、UTF-8でエンコードされた.txtファイルを使用しているので、そのように扱うことができないと思われます。私はそれらを必要とします!つまり、読むべきギリシャ文字が...dσ/dΩ...現在読み込まれている...dÃ/ d©...これはうまく動作しません^^
基本的に私は自分のAntビルド作業を行う必要があることを念頭に置いて、私のUTF- 8つのエンコードされた.txtファイル。
このクラスは存在しますか? –