由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 为什么我的try-with-resources总是提示有unhandled exception?
相关主题
急问如何append double 数据到txt文件Class not found?
自学java,编了个Hello world。怎么都是错误读不出来啊NullPointerException 问题
Java fun[转载] create gif/png image in C or java
新手求助,急急急!!!How to append something on a file?
help "java.lang.NoSuchMethodError"Java的中文读写问题
weird class definitionHow to write a file to the same directory of the class file?
Re: 怎样不用main(String args[])输出"hello worl文件是要放在同目录下的吗?
请问一个最初级问题which one should I close?
相关话题的讨论汇总
话题: unhandled话题: try话题: exception话题: new
进入Java版参与讨论
1 (共1页)
z*********e
发帖数: 10149
1
import java.io.*;
public class DataIOStreamDemo {
public static void main(String[] args){
try( BufferedOutputStream bo = new BufferedOutputStream(new
DataOutputStream( new FileOutputStream("c:\yaya.data"))) ){
bo.write(24);
bo.flush();
}
}
}
我在intelliJ 14下面测试的,project和module的jdk 1.8, language level 7,可是还
是出错
z*********e
发帖数: 10149
2
在另外一个debian的机器上也试了下,jdk 1.7.0_75,直接javac,也是说有unhandled
exception
j*a
发帖数: 14423
3
http://docs.oracle.com/javase/7/docs/api/java/io/BufferedOutput
http://docs.oracle.com/javase/7/docs/api/java/io/BufferedOutput

【在 z*********e 的大作中提到】
: import java.io.*;
: public class DataIOStreamDemo {
: public static void main(String[] args){
: try( BufferedOutputStream bo = new BufferedOutputStream(new
: DataOutputStream( new FileOutputStream("c:\yaya.data"))) ){
: bo.write(24);
: bo.flush();
: }
: }
: }

1 (共1页)
进入Java版参与讨论
相关主题
which one should I close?help "java.lang.NoSuchMethodError"
新手问个简单问题 System.outweird class definition
File generated by Java cannot be read by Android AppRe: 怎样不用main(String args[])输出"hello worl
return null or empty list/set/...请问一个最初级问题
急问如何append double 数据到txt文件Class not found?
自学java,编了个Hello world。怎么都是错误读不出来啊NullPointerException 问题
Java fun[转载] create gif/png image in C or java
新手求助,急急急!!!How to append something on a file?
相关话题的讨论汇总
话题: unhandled话题: try话题: exception话题: new