简体   繁体   中英

error could not find or load main class -eclipse?

  • Currently working on selenium webdriver and using java .
  • I have created a java project as OneReports and inside the project i have many java files as shown in the screenshot

在此输入图像描述

  • I'm trying to run the java file through command prompt and getting error as follows: C:\\Program Files\\Eclipse\\eclipse>java LoginOneReports.java Error: Could not find or load main class LoginOneReports.java

At the same time i want to create a task scheduler for the Test.xml . The xml file contains three java files as follows:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="TestAll">
<test name="test1">
<classes>
<class name="test.LoginOneReports" />
</classes>
</test>
<test name="test2">
<classes>
<class name="test.OEPR_DefaultTab" />
</classes>
</test>
<test name="test3">
<classes>
<class name="test.OEPR_InternalvsExternalTab" />
</classes>
</test>
</suite>

I have created a run.bat as follows:

@echo off
set ProjectPath=C:\Documents and Settings\amth\workspace\OneReports\src\
echo %ProjectPath%
set PATH=%ProjectPath%bin;%ProjectPath%lib*
set path=%PATH%%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files (x86)\Java\jdk1.7.0_51\bin;
echo %PATH%
pause
echo java org.testng.TestNG %ProjectPath%Test.xml
  • I'm getting the error as error could not find or load main class . Please any one can help immediately.

From command line run the below commands one by one

cd C:\Documents and Settings\amth\workspace\OneReports\src\test
javac LoginOneReports.java
java -cp . LoginOneReports

You should study the docs on how to run the java program from command line

http://docs.oracle.com/javase/tutorial/getStarted/cupojava/win32.html

http://www.sergiy.ca/how-to-compile-and-launch-java-code-from-command-line/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM