Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Automated update-Scrapy V0.1 Fixing Navigation links Automatic Nagivation Script

...

Code Block
bgColor#ccccff
try {
  final FileInputStream stream = new FileInputStream(fileName);
  try {
    final BufferedReader bufRead = new BufferedReader(new InputStreamReader(stream));

    String line;
    while ((line = bufRead.readLine()) != null) {
      sendLine(line);
    }
  } finally {
    if (stream != null) { 
      try {
        stream.close();
      } catch (IOException e) { 
        // forward to handler 
      }
    }
  }
} catch (IOException e) { 
  // forward to handler 
}

...

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="0ac696481a91a32b-ab0e17bd-4f554d81-a3aba716-17fadacfac9628ab00e93327"><ac:plain-text-body><![CDATA[

[[API 2006

AA. Bibliography#API 06]]

[Class Object

http://java.sun.com/javase/6/docs/api/java/lang/Object.html]

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="7b9ba64575500cbd-0e7f679e-4e7947fa-a3499ef2-38cde18372e67ec64421807e"><ac:plain-text-body><![CDATA[

[[Goetz 2006b

AA. Bibliography#Goetz 06b]]

 

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="a4cddbdba86e7dfe-099a15cf-4e7d4896-b650aad1-23f8baffb8fe19f3908f5228"><ac:plain-text-body><![CDATA[

[[J2SE 2011

AA. Bibliography#J2SE 11]]

The try-with-resources Statement

]]></ac:plain-text-body></ac:structured-macro>

...

FIO06-J. Do not create multiple buffered wrappers on a single InputStreamImage Added      12. Input Output (FIO)      Image RemovedFIO05-J. Do not expose buffers created using the wrap() or duplicate() methods to untrusted code