为什么在Android Studio中找不到小程序?

问题描述 投票:0回答:2

我正在尝试在android studio中制作一个applet,该applet过去曾在其他计算机上的先前安装中使用。现在,尽管我在import java.applet.Applet;上显示cannot resolve symbol Applet时出错。当我查看项目设置时,它指向android studio附带的JRE8,因此我认为这可能是因为使用jre而不是jdk并安装了openjdk8并指出了这一点,但还是没有运气。我还更改了java_home,使其指向这个新的openjdk8,但是在重新启动android studio时,java_home仍指向其自己的jre。我正在使用ubuntu linux。

感谢您的任何帮助

谢谢

Temp.java

package com.example.myapplication;

import java.applet.Applet;

public class Temp extends Applet {
}

Project build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.2'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Module build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.myapplication"
        minSdkVersion 15
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.google.android.material:material:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
java android android-studio applet
2个回答
1
投票

主要是,Android Studio用于创建Android应用。 Android不支持applet(出于安全考虑,AFAIK,几乎没有任何支持applet的应用程序。)>

您在Android Studio中创建了一个Android项目。 Android项目是根据Android SDK而不是JDK编译的,并且Android SDK不支持applet(或JDK中的许多其他功能)。

如果您希望在Android Studio中构建Java小程序,则需要:

  • 创建Android Studio项目
  • 将Java库模块添加到该项目(从主菜单中选择File> New> New Module ...)
  • 在该库模块中开发小程序
  • 使用其他IDE(例如IntelliJ IDEA)或不使用applet可能会更好。

没关系。如果您想知道为什么在这些教程之一中遇到错误,请耐心等待并完成它,因为当他们将小程序移植到android时,它们很可能会用其他方式替换小程序。


0
投票

没关系。如果您想知道为什么在这些教程之一中遇到错误,请耐心等待并完成它,因为当他们将小程序移植到android时,它们很可能会用其他方式替换小程序。

© www.soinside.com 2019 - 2024. All rights reserved.