/**
* 介面呼叫類
* * @author fengkun
* */
public class datautil
/**
* 獲取引數指定的網頁**,將其返回給呼叫者,由呼叫者對其解析
* 返回string
*/public static string posturl(string url)
catch (exception e)
try
is.close();
result = sb.tostring();
}catch (exception e)
return result;
}/**
* 上傳檔案至伺服器的方法
* @return true-傳送成功,false-傳送失敗。
*/public static string uploadfile(file ffile)
// ds.writebytes(end);
// ds.writebytes(twohyphens + boundary + twohyphens + end);
// close streams
fstream.close();
ds.flush();
// 取得response內容
inputstream is = con.getinputstream();
int ch;
sbinput = new stringbuffer();
while ((ch = is.read()) != -1)
log.e(tag, "伺服器返回:" + sbinput.tostring());
// 關閉dataoutputstream
ds.close();
}catch (exception e)
return sbinput.tostring();
}}
/*** 傳介面資訊
*/private void callinte***ce()
}catch (exception e)
}
}
呼叫介面實現類的方式
1.當要呼叫介面的實現類時,有2種方法 1 宣告介面,實現類例項化 2 通過配置檔案的方式,用和兩個標籤,決定使用介面的那個實現類 2.遇到的問題,別人寫好使,我寫不好使 1 使用ssh開發,宣告介面 peforumcommentservice 是介面 private peforumcomments...
HttpClient介面呼叫工具類
httpclient介面呼叫工具類 description 請求工具類 建立http get請求 執行請求 判斷返回狀態是否為200 不帶引數的get請求 public static string doget string url 帶引數的post請求 public static string do...
Model介面呼叫實現類方法問題
學著學著差點把自己繞進去了。學習springmvc時,關於model的實現類呼叫modelattribute 方法時存在疑惑。concurrentmodel 和 extendedmodelmap 均實現了model類,在呼叫modelattribute 方法時 執行如下 發現呼叫的是extendmo...