Request.java 193 B

123456
  1. package com.fuzamei.http;
  2. public interface Request {
  3. public String sendPost(String url, String param) throws Exception;
  4. public String sendGet(String url, String param) throws Exception;
  5. }