由于Java和Kotlin,我想提出简单的Volley POST请求。我在我的应用程序中同时使用两种语言,因此我尽力使用两种语言。 我在this教程中找到了Kotlin中的以下VolleyClass:
WolfRequest类(val url:字符串, val结果:(JSONObject)-> Unit, val错误:(字符串)->单位){
fun POST(vararg params: Pair<String, Any>) {
// HashMap to pass arguments to Volley
val hashMap = HashMap<String, String>()
params.forEach {
// Convert all Any type to String and add to HashMap
hashMap[it.first] = it.second.toString()
}
// Make the Http Request
makeRequest(Request.Method.POST, hashMap)
}
private fun makeRequest(method: Int, params: HashMap<String, String>) {
// Creating a StringRequest
val req = object : StringRequest(method, url, { res ->
// Creating JSON object from the response string
// and passing it to result: (JSONObject) -> Unit function
result(JSONObject(res.toString().trim()))
}, { volleyError ->
// Getting error message and passing it
// to val error: (String) -> Unit function
error(volleyError.message!!)
}) {
// Overriding getParams() to pass our parameters
override fun getParams(): MutableMap<String, String> {
return params
}
}
// Adding request to the queue
volley.add(req)
}
// For using Volley RequestQueue as a singleton
// call WolfRequest.init(applicationContext) in
// app's Application class
companion object {
var context: Context? = null
val volley: RequestQueue by lazy {
Volley.newRequestQueue(context
?: throw NullPointerException(" Initialize WolfRequest in application class"))
}
fun init(context: Context) {
this.context = context
}
}
}
我正在尝试从Java.Class访问此代码以进行POST请求:
WolfRequest.Companion.init(getApplicationContext());
HashMap <String, String> params = new HashMap <> ();
params.put("id", "123");
new WolfRequest(config.PING_EVENTS,*new WolfRequest()*
{
public void response(JSONObject response) {
Log.e("Ping","PING");
}
public void error(String error) {
Log.e("Ping",error);
}
}).POST(params);
这给我一个错误( new WolfRequest()):无法从最终的“ ... wolfrequest.kt”继承
我真的没有收到错误,这是什么问题?
谢谢
答案 0 :(得分:1)
默认情况下,kotlin中的课程是最终课程。要创建一个无最终类,您需要将其声明为open
。所以open class WolfRequest
使用Java中的new WolfRequest() {}
,您将创建一个扩展了WolfRequest
的匿名类,因此您将从继承的类中继承该错误。
要实际调用WolfRequest的构造函数,您需要传递三个参数。像这样:
new WolfRequest("", (s) -> Unit.INSTANCE, (s) -> Unit.INSTANCE){
....
}