java中怎么把一个线程里面的变量传到另一个线程

 我来答
__迷___
2015-08-06 · 超过25用户采纳过TA的回答
知道答主
回答量:98
采纳率:0%
帮助的人:57.9万
展开全部
  public static String pub="";
  public static void main(String[] args) {
  final Thread t2=new Thread(){
  @Override
  public void run() {
  //打印线程1传递过来的值
  System.out.println(pub);
  }
  };
  Thread t1=new Thread(){
  @Override
  public void run() {
  String thread1="thread1";
  //将值thread1传递给线程2
  pub=thread1;
  t2.start();
  }
  };
  t1.start();
  }

匿名用户
2014-11-02
展开全部
如下:
public static String do_post(String url, List<NameValuePair> name_value_pair) throws IOException {
        String body = "{}";
        DefaultHttpClient httpclient = new DefaultHttpClient();
        try {
            HttpPost httpost = new HttpPost(url);
            httpost.setEntity(new UrlEncodedFormEntity(name_value_pair, StandardCharsets.UTF_8));
            HttpResponse response = httpclient.execute(httpost);
            HttpEntity entity = response.getEntity();
            body = EntityUtils.toString(entity);
        } finally {
            httpclient.getConnectionManager().shutdown();
        }
        return body;
    }
    public static String do_get(String url) throws ClientProtocolException, IOException {
        String body = "{}";
        DefaultHttpClient httpclient = new DefaultHttpClient();
        try {
            HttpGet httpget = new HttpGet(url);
            HttpResponse response = httpclient.execute(httpget);
            HttpEntity entity = response.getEntity();
            body = EntityUtils.toString(entity);
        } finally {
            httpclient.getConnectionManager().shutdown();
        }
        return body;
    }
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式