(String src)
| 124 | } |
| 125 | |
| 126 | public void fileWriteUtf(String src) { |
| 127 | try { |
| 128 | OutputStream os = appendOutputStream(); |
| 129 | if (os != null) { |
| 130 | os.write(src.getBytes("UTF-8")); |
| 131 | os.close(); |
| 132 | os.flush(); |
| 133 | } |
| 134 | close(); |
| 135 | } catch (IOException ex) { |
| 136 | if (StaticData.Debug) |
| 137 | ex.printStackTrace(); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | public abstract OutputStream openOutputStream() throws IOException; |
| 142 |
no test coverage detected