0

まず、Netbeans で Java プロジェクトを作成し、Netbean の Java プロジェクトを Eclipse ケプラーの Maven プロジェクトにインポートしたいと考えています。一度試してみましたが、Eclipse ケプラーでコンパイルするとエラーが発生しました。コンパイルしてから動作します。

4

1 に答える 1

2
  1. Create a new maven project in eclipse, notice that you have an src/main/java/ folder
  2. Go to your netbeans java project, right-click on 'Source Pakages', click on properties and copy the location of this folder
  3. Go to your files explorer and paste the location, copy all folders under src/
  4. return to your maven project in eclipse and paste the folders (actually your java packages) under the src/main/java folder
  5. if you used jar libraries just add them to dependencies in the pom.xml
于 2013-09-07T06:08:19.583 に答える