Can we call another project java class from our project in eclipse

前端 未结 9 1569
心在旅途
心在旅途 2020-11-30 07:40
import ...

public class TriggerJob {

    String jobStatus = \"\";
    SchedulerMetaData metaData = null;

    public void rightNow(HashMap ParamMap){ 

AnotherProj         


        
9条回答
  •  旧巷少年郎
    2020-11-30 08:14

    Knowing that you using any version of Eclipse, the below steps should help you:

    Step #1. Right Click => Project

    Step #2. Click Project Properties

    Step #3. Click on Java Build Path

    Step #4. Click the Projects Tab

    Step #5. Click the Add Button

    Step #6. Select the Project you want to add

    Step #7. Click OK button

    Hopefully this help.

提交回复
热议问题