我正在尝试在我的Android应用中使用 SOAP 服务。我正在尝试遵循本指南。当我尝试运行我的应用程序时,我收到一个错误:
Error: MethodHandle.invoke and MethodHandle.invokeExact are only supported starting with Android O (--min-api 26)
我使用的是Android N(SDK 25-我不能像错误消息所示那样跳到26),这是Android Studio刚刚创建的一个全新项目。
这是我的项目构建.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.4.1'
// 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
}
这是我的app build.gradle文件:
apply plugin: 'com.android.application'
configurations {
jaxb
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.6.RELEASE")
}
}
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
repositories {
mavenCentral()
}
// tag::wsdl[]
task genJaxb {
ext.sourcesDir = "${buildDir}/generatedjava/jaxb"
ext.classesDir = "${buildDir}/classes/jaxb"
ext.schema = "https://lite.realtime.nationalrail.co.uk/OpenLDBWS/wsdl.aspx?ver=2017-10-01"
outputs.dir classesDir
doLast() {
project.ant {
taskdef name: "xjc", classname: "com.sun.tools.xjc.XJCTask",
classpath: configurations.jaxb.asPath
mkdir(dir: sourcesDir)
mkdir(dir: classesDir)
xjc(destdir: sourcesDir, schema: schema,
package: "hello.wsdl") {
arg(value: "-wsdl")
produces(dir: sourcesDir, includes: "**/*.java")
}
javac(destdir: classesDir, source: 1.8, target: 1.8, debug: true,
debugLevel: "lines,vars,source",
classpath: configurations.jaxb.asPath) {
src(path: sourcesDir)
include(name: "**/*.java")
include(name: "*.java")
}
copy(todir: classesDir) {
fileset(dir: sourcesDir, erroronmissingdir: false) {
exclude(name: "**/*.java")
}
}
}
}
}
// end::wsdl[]
android {
compileSdkVersion 29
buildToolsVersion "29.0.0"
defaultConfig {
applicationId "com.example.magicmirror"
minSdkVersion 25
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'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
packagingOptions {
exclude 'META-INF/spring.tooling'
exclude 'META-INF/spring.handlers'
exclude 'META-INF/spring-configuration-metadata.json'
exclude 'META-INF/additional-spring-configuration-metadata.json'
exclude 'META-INF/spring.factories'
exclude 'META-INF/spring.schemas'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/notice.txt'
exclude 'META-INF/ASL2.0'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation "org.springframework.boot:spring-boot-starter"
implementation "org.springframework.ws:spring-ws-core"
implementation(files(genJaxb.classesDir).builtBy(genJaxb))
jaxb "com.sun.xml.bind:jaxb-xjc:2.1.7"
}
从日志中可以看出,导致这种情况的确切 JAR 是组织Spring框架/Spring核心/5.1.8.RELEASE.jar
。添加编译选项
块在其他答案中作为修复程序被提及,但它尚未解决此问题。我该如何解决这个问题?
5.1.8.发布.jar
不适用于minSdkVersion 25
,它甚至不是Android库,而是一个Java库。它严格要求 minSdk 版本 26
:
MethodHandle.invoke and MethodHandle.invokeExact
are only supported starting with Android O (--min-api 26)
>
ksoap2-android可能确实更兼容(最常见的)或
wsdl2ksoap2-android带有设备上的“从WSDL自动生成源代码”。
…还有一些其他链接;有些需要在桌面Java上生成POJO。
我认为您只需要使用不同的库来进行SOAP调用。这是我使用的,它支持早在14年的SDK版本。
private void GetSomeStuff(String myterm) throws UnsupportedEncodingException {
try {
String strStuff2 = "<?xml version=\"1.0\" encoding=\"utf-8\"?>"+
"<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">"+
"<soap:Header><wsse:Security xmlns:wsse=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\">"+
"<wsse:UsernameToken><wsse:Username>my username</wsse:Username><wsse:Password Type=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText\">my password</wsse:Password></wsse:UsernameToken></wsse:Security></soap:Header>"+
"<soap:Body> <GetSomeStuff xmlns=\"https://mycompany.com.MyService\">"+
"<term>" + myterm + "/term></GetSomeStuff></soap:Body></soap:Envelope>";
StringBuilder stringBuilder = new StringBuilder();
HttpPost httppost = new HttpPost("https://mycompany.com/MyService.svc");
StringEntity se;
se = new StringEntity(strStuff2,HTTP.UTF_8);
httppost.setHeader("SOAPAction", "https://mycompany.com.MyService/GetSomeStuff”);
se.setContentType("text/xml");
httppost.setEntity(se);
HttpClient httpclient = new DefaultHttpClient();
HttpResponse theresponse = (HttpResponse) httpclient.execute(httppost);
StatusLine statusLine = theresponse.getStatusLine();
int statusCode = statusLine.getStatusCode();
if (statusCode == 200) {
HttpEntity entity = theresponse.getEntity();
InputStream content = entity.getContent();
BufferedReader reader = new BufferedReader(
new InputStreamReader(content));
String line;
while ((line = reader.readLine()) != null) {
stringBuilder.append(line);
}
String theXML = stringBuilder.toString();
int start = theXML.indexOf("<GetSomeStuffResult>") + 21;
int end = theXML.indexOf("</GetSomeStuffResult>") - 1;
// We didn't get the response we expected
if ((start < 0) || (end < 0) || (start==end)) {
Log.i(“MyApp”,”Empty Response from GetSomeStuffResult");
return;
}
String myData = theXML.substring(start, end);
if (myData() > 0) {
try {
JSONObject jObject = new JSONObject(myData);
String deptDesc = jObject.getString("DepartmentDescription");
String areaCode = jObject.getString("area_code");
String phoneNumber = jObject.getString("phone_nbr");
String title = jObject.getString("title");
String fullPhoneNumber = "";
if (phoneNumber.length() == 7) {
fullPhoneNumber = "(" + areaCode + ") " + phoneNumber.substring(0, 3) + "-" + phoneNumber.substring(3, 7);
} else {
fullPhoneNumber = "(" + areaCode + ") " + phoneNumber;
}
SharedPreferences appPrefs =
getSharedPreferences("appPreferences",MODE_PRIVATE);
SharedPreferences.Editor prefsEditor = appPrefs.edit();
prefsEditor.putString("Title",title);
prefsEditor.putString("DeptDescr",deptDesc);
prefsEditor.putString("PhoneNumber",fullPhoneNumber);
prefsEditor.commit();
}
catch (JSONException e) {
e.printStackTrace();
}
}
} else {
Log.e(“MyApp”, "Failed to GetSomeStuff”);
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
你试过ksoap吗?
https://github.com/simpligility/ksoap2-android
看起来它应该做肥皂,是活着的,适用于机器人。
ksoap2-android项目为android平台提供了一个轻量级的、高效的soap客户端库。
我有一个项目在Android Studio或Gradle中构建时已经开始抛出这个错误: 现在我假设它与Java 8特性的使用有关,可能是lambda,但是错误消息没有给出问题所在的线索——可能是我的代码,也可能是库。 找出违规代码在哪里的最佳方法是什么?这是一个相当大的应用程序,有几个模块和相当多的库。
使用Powershell v3的Invoke WebRequest和Invoke RestMethod,我成功地使用POST方法将json文件发布到https网站。 我用的命令是 但是,当我尝试使用GET方法时,例如: 返回以下错误 我尝试使用以下代码忽略SSL证书,但我不确定它是否真的在做任何事情。 有人能就这里可能出现的问题以及如何解决它提供一些指导吗? 谢啦
Creates a new sequence whose values are calculated by invoking the specified function on each element in this sequence. Signature Sequence.invoke = function(methodName) { /*...*/ } Sequence.invoke = f
Invoke 是简单的 Python 系统任务执行程序。用于管理面向shell的子进程,并将可执行的Python代码组织到CLI可调用的任务中。它从各种来源(make/ rake,Fabric 1.x等)中汲取灵感,以获得功能强大且简洁的功能集。 像Ruby的Rake工具和Invoke自己的前身Fabric 1.x一样,它提供了一个干净的高级API,用于运行Shell命令并从tasks.py文件定
我试图访问Foreman API在Powershell版本5.1使用Invoke-Restmethod 我发现以下错误: Invoke RestMethod:基础连接已关闭:无法为SSL/TLS安全通道建立信任关系。 在执行此命令之前,我尝试执行该命令,但无效。 我尝试了Tls,Tls11也没有工作。
我编写了一个测试、和方法直接调用的性能的小基准测试。 我读到的性能几乎与直接调用相同。但我的测试结果显示了另一种情况:调用比反射慢三倍。我的问题是什么?这可能是一些JIT优化的结果吗? 环境:java版本“1.7.0_11”java(TM)SE Runtime Environment(build 1.7.0_11-B21)java HotSpot(TM)64位服务器VM(build 23.6-B0