对于那些时候,当你想要隔离Java并给它一个快速测试。

你能像在Eclipse中一样在Android studio中运行非Android Java项目吗?


当前回答

在Android Studio 0.8.6 - 3.5上测试

使用这种方法,你可以在同一个项目中拥有Java模块和Android模块,还可以将Java模块作为独立的Java项目编译和运行。

Open your Android project in Android Studio. If you do not have one, create one. Click File > New Module. Select Java Library and click Next. Fill in the package name, etc and click Finish. You should now see a Java module inside your Android project. Add your code to the Java module you've just created. Click on the drop down to the left of the run button. Click Edit Configurations... In the new window, click on the plus sign at the top left of the window and select Application A new application configuration should appear, enter in the details such as your main class and classpath of your module. Click OK.

现在,如果单击run,应该会编译并运行Java模块。

如果你得到错误错误:无法找到或加载主类…,只需再次输入你的主类(就像你在步骤7中所做的那样),即使字段已经填写。单击Apply,然后单击Ok。

我的用例: 我的Android应用程序依赖于一些预先计算好的文件来运行。这些预计算文件是由一些Java代码生成的。由于这两件事是相辅相成的,所以在同一个项目中同时拥有这两个模块是最有意义的。

新-如何在你的独立项目中启用Kotlin

如果希望在独立项目中启用Kotlin,请执行以下操作。

Continuing from the last step above, add the following code to your project level build.gradle (lines to add are denoted by >>>): buildscript { >>> ext.kotlin_version = '1.2.51' repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.1.3' >>> classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } ... Add the following code to your module level build.gradle (lines to add are denoted by >>>): apply plugin: 'java-library' >>> apply plugin: 'kotlin' dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) >>> implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" >>> runtimeClasspath files(compileKotlin.destinationDir) } ... Bonus step: Convert your main function to Kotlin! Simply change your main class to: object Main { ... @JvmStatic fun main(args: Array<String>) { // do something } ... }

其他回答

我找到了一个有点俗气、烦人且不完全确定它总是有效的解决方案。我想分享一下,以防别人觉得有用。

在Android Studio中,你可以右键单击带有main方法的类并选择“Run .main()”。这将为YourClass创建一个新的Run配置,尽管它并不完全有效:它将丢失一些类路径条目。

为了修复缺少的类路径条目,进入项目结构,手动添加模块的输出文件夹位置和其他模块依赖项,如下所示:

文件->项目结构… 在左列面板的Project Settings面板中选择“Modules” 在中间列面板中的模块列表中选择您的模块 选择右列面板上的“Dependencies”选项卡

然后对于你的Java应用程序所在的模块以及你需要的每个模块依赖项: —单击右侧栏面板最右侧的“+”->“jar或目录” -导航到模块的输出文件夹(例如:my_module/build/classes/main/java),然后点击“确定” 在依赖项列表的新条目中,在最右边,将选择框从“Compile”更改为“Runtime”

在此之后,您应该能够执行刚才为运行简单Java应用程序而创建的Run配置。

需要注意的一件事是,对于我特殊的Android Studio项目设置,在我运行应用程序之前,我必须从Android Studio外部手动用gradle构建项目,以便让我的简单Java应用程序类构建-我认为这是因为“Application”类型的运行配置没有触发相应的gradle构建。

最后,这是在Android Studio 0.4.0上完成的。

我希望其他人觉得它有用。我也希望谷歌能很快支持这个功能。

我从http://www.jetbrains.com/idea/download/安装了IntelliJ IDEA社区版

I tried opening my project that I started in Android studio but it failed when at gradle build. I instead opened both android studio and intellij at same time and placed one screen next to the other and simply drag and dropped my java files, xml layouts, drawables, and manifest into the project hiearchy of a new project started in IntelliJ. It worked around the gradle build issues and now I can start a new project in IntelliJ and design either an android app or a basic Java app. Thankfully this worked because I hated having so many IDEs on my pc.

我已经能够使用以下步骤做到这一点:

打开Android Studio,选择“Import Project”。 在浏览窗口中浏览到您的项目文件夹并选择它。

这就是具体的设置。

编辑配置> '+' >

在Android Studio 0.8.14中测试: 我能够以这种方式以最少的步骤运行一个标准项目: 在打开的Android Studio项目中,单击File > New Module。 单击More Modules > Java Library > Next,然后填写您喜欢的名称。 一个新的模块将作为一个文件夹出现在项目结构中与“app”文件夹相同的级别。打开它并打开新的Java类文件。

然后您可以添加您的代码,并选择构建>运行'YourClassName'。很快,你的代码就在没有Android设备的情况下运行了!