2015-01-22 7 views
0

stringBuilder 객체를 내 주요 활동으로 가져 오려고합니다. 나는 내 json 파일을 검사하거나 잘 작동하는 코드를 파싱한다. 그러나 stringbuilder를 가져 오려고하면 오류가 발생했습니다. 첨부 된 스택 추적에서 리소스가 획득되었지만 해제되지 않았습니다. 리소스 누출을 피하는 방법에 대한 정보는 java.io.Closeable을 참조하십시오. java.lang.Throwable의 : 호출되지 닫기를 명시 종료 방법은오류없이 안드로이드에 문자열을 전달하는 방법 - 첨부 된 스택 추적에서 리소스가 획득되었지만 결코 해제되지 않았습니다.

코드 Server.java에 대한

`

public class Server extends Activity { 

    static StringBuilder stringBuilder = new StringBuilder(); 
public Server(){ 
    try { 
     JSONObject obj = new JSONObject(loadJSONFromAsset()); 
     JSONArray project = obj.getJSONArray("project"); 

     for (int i = 0; i < project.length(); i++) { 
      JSONObject ss = project.getJSONObject(i); 
      stringBuilder.append(ss.getString("title") + "\n"); 
      JSONArray post = ss.getJSONArray("posts"); 

      for(int j = 0; j < post.length();j++){ 
       JSONObject posts = post.getJSONObject(j); 
       stringBuilder.append(posts.getString("id") +"\n"); 
       JSONArray tag = posts.getJSONArray("tags"); 

       for(int k = 0; k < tag.length();k++){ 
        stringBuilder.append(tag.getString(k) +"\n"); 
       } 
      } 
     } 
    } 
    catch (JSONException e) { 
     stringBuilder.append("error"); 
     e.printStackTrace(); 
    } 

} 

public String getString(){ 

    return stringBuilder.toString(); 
} 


public String loadJSONFromAsset() { 
    String json = null; 
    try { 

     InputStream is = getAssets().open("cat.json"); 
     int size = is.available(); 
     byte[] buffer = new byte[size]; 
     is.read(buffer); 
     is.close(); 
     json = new String(buffer, "UTF-8"); 

    } catch (IOException ex) { 
     ex.printStackTrace(); 
     return null; 
    } 
    return json; 
}} 

아래로하고 여기 내 MainActivity.java

입니다
public class MainActivity extends Activity { 


TextView jsonDataTextView; 


@Override 
protected void onCreate(Bundle savedInstanceState) { 

    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 

    jsonDataTextView = (TextView) findViewById(R.id.textView); 

    Server s = new Server(); 
    jsonDataTextView.setText(s.stringBuilder.toString());} } 

해결책이 있습니까?

+2

내가 직접 테스트하지 않은,하지만 난 당신이에 I/O 스트림을 닫는 것 같아요 'try' 블록. 예외가 발생하면 스트림이 닫히지 않습니다. 'finally' 블록을 추가하고 그 안에'is.close();'라고 써야합니다. –

+2

Server 클래스가 Activity를 확장하는 이유는 무엇입니까? – Gorcyn

+0

getAssets는 그것을 원합니다 @Gorcyn –

답변

2

loadJSONFromAsset 메서드의 try 블록에서 InputStream을 닫지 않아도됩니다.

public String loadJSONFromAsset() { 
    String json = null; 
    InputStream is = null; 
    try { 
     is = getAssets().open("cat.json"); 
     int size = is.available(); 
     byte[] buffer = new byte[size]; 
     is.read(buffer); 
     json = new String(buffer, "UTF-8"); 
    } 
    catch (IOException ex) { 
     ex.printStackTrace(); 
    } 
    finally { 
     if (is != null) { 
      try { 
       is.close(); 
      } 
      catch (IOException ex) { 
       // Do you want to handle this exception? 
      } 
     } 
    } 
    return json; 
} 

참고 : 뭔가 당신이 당신의 StringBuilder에 "오류"를 추가하려고 catch 블록에, 당신의 Server 생성자에서 날 귀찮게. 여기에 StringBuilder이 비어 있지 않을 수도 있습니다. 실제로 try 블록에서 일부 문자열이 잘못 추가되기 전에 해당 문자열을 추가하려는 시도가있을 수 있습니다.

주 2 : 비 활동 귀하의 MainActivity에서 다음

public class Server { 

    private Context mContext; 
    public Server(Context context) { 
     mContext = context; 
     ... 
    } 
    ... 
    public String loadJSONFromAsset() { 
     ... 
      mContext.getAssets().open("cat.json"); 
    } 
} 

같은 서버

Server s = new Server(this); 
+0

내가 넣으려고 할 때 is.close(); 마침내 오류가 발생하여 public String loadJSONFromAsset()에서 IOException을 throw해야합니다. 언제 그랬습니까? JSONObject obj = new JSONObject (loadJSONFromAsset()); 오류가 발생하여 캐치가 필요합니다 (IOException e) { e.printStackTrace(); } 그 후에 실행하면 오류가 계속 발생합니다. –

+0

수정 됨. 못생긴 것입니다.하지만 IO 스트림으로 들어가면 finally 블록에서 많은 예외 처리를 볼 수 있습니다. 이것 좀 봐 : http://grepcode.com/file/repo1.maven.org/maven2/commons-io/commons-io/1.4/org/apache/commons/io/IOUtils.java#IOUtils.closeQuietly%28java. io.InputStream % 29 – Gorcyn

+0

어제 나는 그것을 8 시간 일하고있었습니다. 고셔 감사합니다. 이제 Gorcyn이 작동합니다. 그러나 나는 문맥이 무엇인지 이해할 수 없다. 간단히 설명 할 수 있습니까? –