从位于桌面上的文件中运行Ubuntu中的java

时间:2017-05-18 17:06:40

标签: java ubuntu

我在Ubuntu中运行一个java程序,当我输入时它运行正常:

<properties>
    <swagger-maven-plugin.version>3.1.3</swagger-maven-plugin.version>
</properties>
 ...
<plugin>
  <groupId>com.github.kongchen</groupId>
  <artifactId>swagger-maven-plugin</artifactId>
  <version>${swagger-maven-plugin.version}</version>
  <configuration>
    <apiSources>
      <!-- Version 1 -->
      <apiSource>
        <springmvc>false</springmvc>
        <locations>com.asimio.swaggerexample.rest.v1</locations>
        <schemes>http,https</schemes>
        <basePath>/api</basePath>
        <info>
          <title>Multiversion Spring Boot + Jersey + Swagger Demo (Version 1)</title>
          <version>v1</version>
          <description>A multi-version demo (version 1) of a RESTful service using Spring Boot, Jersey and Swagger.</description>
          <termsOfService>http://www.github.com/kongchen/swagger-maven-plugin</termsOfService>
          <contact>
            <email>xxxx@xxxx.xxx</email>
            <name>Orlando L Otero</name>
            <url>http://tech.asimio.net</url>
          </contact>
          <license>
            <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
            <name>Apache 2.0</name>
          </license>
        </info>
        <outputFormats>json</outputFormats>
        <swaggerDirectory>${basedir}/target/classes/static/v1</swaggerDirectory>
        <swaggerApiReader>com.github.kongchen.swagger.docgen.reader.JaxrsReader</swaggerApiReader>
      </apiSource>
      <!-- Version 2 -->
...

但是当它位于&#34; cd&#34;时,但是当我尝试从位于桌面的文件中运行它时

javac fileName.java 
java Classname 

它找到了文件项目但是当我把

cd / desktop / project

显示错误javac Filename.java

如何从其他地方运行该程序&#39; cd&#39;

2 个答案:

答案 0 :(得分:0)

您必须使用cd ./desktop/project/ javac <filename>.javacd ./desktop/project/ java <filename>

答案 1 :(得分:0)

您可以通过在文件管理器中打开它来获取“项目”目录的完整路径。打开后按 ctrl + l ,它将突出显示完整目录路径的地址栏。

只需复制此路径并从命令行转到此目录。

在此之后你可以运行

javac Filename.java