Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_java
提交
088cd7f2
S
skill_tree_java
项目概览
CSDN 技术社区
/
skill_tree_java
通知
43
Star
8
Fork
4
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_java
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
088cd7f2
编写于
3年前
作者:
CSDN-Ada助手
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add questions
上级
b81dcf30
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
183 addition
and
2 deletion
+183
-2
data/2.Java中阶/1.IO(输入输出)/2.输入输出流/Input.json
data/2.Java中阶/1.IO(输入输出)/2.输入输出流/Input.json
+8
-0
data/2.Java中阶/1.IO(输入输出)/2.输入输出流/Input.md
data/2.Java中阶/1.IO(输入输出)/2.输入输出流/Input.md
+89
-0
data/2.Java中阶/1.IO(输入输出)/2.输入输出流/config.json
data/2.Java中阶/1.IO(输入输出)/2.输入输出流/config.json
+2
-1
data/2.Java中阶/1.IO(输入输出)/3.文件输入输出流/FileRead.json
data/2.Java中阶/1.IO(输入输出)/3.文件输入输出流/FileRead.json
+8
-0
data/2.Java中阶/1.IO(输入输出)/3.文件输入输出流/FileRead.md
data/2.Java中阶/1.IO(输入输出)/3.文件输入输出流/FileRead.md
+74
-0
data/2.Java中阶/1.IO(输入输出)/3.文件输入输出流/config.json
data/2.Java中阶/1.IO(输入输出)/3.文件输入输出流/config.json
+2
-1
未找到文件。
data/2.Java中阶/1.IO(输入输出)/2.输入输出流/Input.json
0 → 100644
浏览文件 @
088cd7f2
{
"type"
:
"code_options"
,
"author"
:
"陈龙"
,
"source"
:
"Input.md"
,
"exercise_id"
:
""
,
"notebook_enable"
:
true
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
data/2.Java中阶/1.IO(输入输出)/2.输入输出流/Input.md
0 → 100644
浏览文件 @
088cd7f2
# Input
以下
`Input`
程序中,不能正确从控制台输入的是:
## 答案
```
java
import
java.io.BufferedReader
;
import
java.io.IOException
;
import
java.io.InputStreamReader
;
public
class
Input
{
public
static
void
main
(
String
[]
args
)
{
BufferedReader
br
=
new
BufferedReader
(
new
InputStreamReader
(
System
.
in
));
String
input
=
null
;
System
.
out
.
print
(
"请开始输入:"
);
try
{
input
=
br
.
read
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
System
.
out
.
println
(
"请输入的字符串是:"
+
input
);
}
}
```
## 选项
### A
```
java
import
java.io.BufferedReader
;
import
java.io.IOException
;
import
java.io.InputStreamReader
;
public
class
Input
{
public
static
void
main
(
String
[]
args
)
throws
IOException
{
BufferedReader
br
=
new
BufferedReader
(
new
InputStreamReader
(
System
.
in
));
String
input
=
null
;
System
.
out
.
print
(
"输入数据:"
);
try
{
input
=
br
.
readLine
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
System
.
out
.
println
(
"输入数据:"
+
input
);
}
}
```
### B
```
java
import
java.util.Scanner
;
public
class
Input
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
print
(
"请开始输入:"
);
Scanner
scan
=
new
Scanner
(
System
.
in
);
String
read
=
scan
.
nextLine
();
System
.
out
.
println
(
"请输入的字符串是:"
+
read
);
}
}
```
### C
```
java
public
class
Input
{
public
static
void
main
(
String
[]
args
)
{
char
input
=
'\n'
;
System
.
out
.
println
(
"请开始输入:"
);
StringBuilder
sb
=
new
StringBuilder
();
do
{
try
{
input
=
(
char
)
System
.
in
.
read
();
sb
.
append
(
input
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
while
(
input
!=
'\n'
);
System
.
out
.
println
(
"请输入的字符串是:"
+
sb
);
}
}
```
This diff is collapsed.
Click to expand it.
data/2.Java中阶/1.IO(输入输出)/2.输入输出流/config.json
浏览文件 @
088cd7f2
...
...
@@ -19,6 +19,6 @@
}
}
],
"export"
:
[],
"export"
:
[
"Input.json"
],
"title"
:
"输入输出流"
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
data/2.Java中阶/1.IO(输入输出)/3.文件输入输出流/FileRead.json
0 → 100644
浏览文件 @
088cd7f2
{
"type"
:
"code_options"
,
"author"
:
"陈龙"
,
"source"
:
"FileRead.md"
,
"exercise_id"
:
""
,
"notebook_enable"
:
true
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
data/2.Java中阶/1.IO(输入输出)/3.文件输入输出流/FileRead.md
0 → 100644
浏览文件 @
088cd7f2
# FileRead
以下
`FileRead`
程序中,是按行读取文件的是:
## 答案
```
java
import
java.io.*
;
public
class
FileRead
{
public
static
void
main
(
String
[]
args
)
throws
IOException
{
String
filePath
=
"test.txt"
;
File
file
=
new
File
(
filePath
);
BufferedReader
reader
=
new
BufferedReader
(
new
FileReader
(
file
));
String
lineString
=
null
;
while
((
lineString
=
reader
.
readLine
())
!=
null
)
{
System
.
out
.
println
(
lineString
);
}
reader
.
close
();
}
}
```
## 选项
### A
```
java
import
java.io.*
;
public
class
FileRead
{
public
static
void
main
(
String
[]
args
)
throws
IOException
{
String
filePath
=
"test.txt"
;
InputStream
in
=
null
;
try
{
byte
[]
bytes
=
new
byte
[
20
];
int
length
=
0
;
in
=
new
FileInputStream
(
filePath
);
while
((
length
=
in
.
read
(
bytes
))
!=
-
1
)
{
System
.
out
.
write
(
bytes
,
0
,
length
);
}
}
catch
(
Exception
e1
)
{
e1
.
printStackTrace
();
}
finally
{
if
(
in
!=
null
)
{
in
.
close
();
}
}
}
}
```
### B
```
java
import
java.io.*
;
public
class
FileRead
{
public
static
void
main
(
String
[]
args
)
throws
IOException
{
String
filePath
=
"test.txt"
;
char
[]
chars
=
new
char
[
20
];
int
length
=
0
;
Reader
reader
=
new
InputStreamReader
(
new
FileInputStream
(
filePath
));
while
((
length
=
reader
.
read
(
chars
))
!=
-
1
)
{
for
(
int
i
=
0
;
i
<
length
;
i
++)
{
System
.
out
.
print
(
chars
[
i
]);
}
}
}
}
```
This diff is collapsed.
Click to expand it.
data/2.Java中阶/1.IO(输入输出)/3.文件输入输出流/config.json
浏览文件 @
088cd7f2
...
...
@@ -19,6 +19,6 @@
}
}
],
"export"
:
[],
"export"
:
[
"FileRead.json"
],
"title"
:
"文件输入输出流"
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
新手
引导
客服
返回
顶部