atom-community / atom-script

:runner: Run ( scripts | selections | source ) in Atom
https://atom.io/packages/script
MIT License
734 stars 269 forks source link

Javac : File not found #1206

Closed PReiZDev closed 7 years ago

PReiZDev commented 7 years ago

(sorry, I'm a Foreigner, Not good at English.) OS: windows 10, 64bit I compile java program with script, and is working. But There is one problem. I want to compile java program build in Eclipse. EXAMPLE - my Eclipse project path is D:\project\java_tutorials. I open D:\project\java_tutorials\src\org\opentutorials\javatutorials\compare\EqualDemo.java . because I make package "org.opentutorials.javatutorials.compare" and make Java class named "EqualDemo" at Eclipse. `package org.opentutorials.javatutorials.compare;

public class EqualDemo {

public static void main(String[] args) {
    System.out.println(1 == 2); // false
    System.out.println(1 == 1); // true
    System.out.println("one" == "two"); // false
    System.out.println("one" == "one"); // true

}

} ` But Error is appeared. default

One Interest thing, When I make this sample in D:\project\java_tutorials, is working. image

that means no PROBLEM in my environment variables. Help me to solve this Error....PLEASE

PReiZDev commented 7 years ago

Oh I solve

andyrichardson commented 7 years ago

Packages aren't currently supported. See #1201 for support progress

cyciopes commented 7 years ago

hi @20031004 , may I know how do you solve the problem? I have same issue. Thanks.

amankriet commented 6 years ago

Same Issue with me too... please help!