java_method
Posted hai-peng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java_method相关的知识,希望对你有一定的参考价值。
package mytest; import java.util.HashMap; import java.util.Map; //import com.idss.monkey.common.util.IdssHttpClient; //import com.idss.monkey.common.util.CommonUtils; public class TestJave { public String sayHello() { return "Hello"; } public String sayHelloToPerson(String s) { if(s == null || s.equals("")) s = "nobody"; return (new StringBuilder()).append("Hello ").append(s).toString(); } public int sum(int a,int b) { return a+b; } // public static String sendRequest(String url,String serviceCode,String requestCode,String json,String photoPath) { // // String re = IdssHttpClient.sendPost(url, serviceCode, requestCode, json); // System.out.println(re); // return null; }
以上是关于java_method的主要内容,如果未能解决你的问题,请参考以下文章