public void fk() {
  String myto;
  String tempArray[] = new String[1];
  client_parse_get_conent(tempArray);
  myto=tempArray[0];
  System.out.println(myto); //这里显示为null
}
class client_parse_get_conent extends client_base {
  String  filename="cw";
  public client_parse_get_conent(String[] myto ) {
    myto[0]=filename;
  }
}