(int length)
| 339 | } |
| 340 | |
| 341 | String getUNString(int length) throws IOException { |
| 342 | String s = getString(length); |
| 343 | if (s!=null && s.length()>60) |
| 344 | s = s.substring(0,60); |
| 345 | return s; |
| 346 | } |
| 347 | |
| 348 | int getByte() throws IOException { |
| 349 | int b = f.read(); |
no test coverage detected