質問編集履歴
4
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,43 +36,35 @@
|
|
36
36
|
|
37
37
|
object Main {
|
38
38
|
|
39
|
-
|
39
|
+
def main(args: Array[String]): Unit = {// ファイルから読み込み0
|
40
40
|
|
41
|
+
val source =Source.fromFile("C:\Users\xxx\Documents\scala\s.json", "UTF-8")//8行目
|
41
42
|
|
43
|
+
source.getLines.foreach{
|
42
44
|
|
43
|
-
|
45
|
+
line => println(line)
|
44
46
|
|
45
|
-
|
47
|
+
}
|
46
48
|
|
47
|
-
|
49
|
+
source.close()// 書き込み
|
48
50
|
|
49
|
-
|
51
|
+
val pw = new PrintWriter("C:\Users\xxx\Documents\scala\t.json")
|
50
52
|
|
51
|
-
|
53
|
+
pw.write("Hello, world")
|
52
54
|
|
53
|
-
source.close()
|
54
|
-
|
55
|
-
// 書き込み
|
56
|
-
|
57
|
-
val pw = new PrintWriter("C:\Users\xxx\Documents\scala\t.json")
|
58
|
-
|
59
|
-
pw.write("Hello, world")
|
60
|
-
|
61
|
-
|
55
|
+
pw.close
|
62
56
|
|
63
57
|
}
|
64
58
|
|
65
59
|
}
|
66
60
|
|
67
|
-
|
68
|
-
|
69
61
|
### 試したこと
|
70
62
|
|
71
63
|
ソースファイルの記述方法が悪いのかと思い、8行目を
|
72
64
|
|
73
|
-
val source = Source.fromFile("s.json, "UTF-8")
|
65
|
+
val source = Source.fromFile("s.json", "UTF-8")
|
74
66
|
|
75
|
-
|
67
|
+
val source = Source.fromFile("C:\Users\xxx\Documents\scala\s.json", "UTF-8")
|
76
68
|
|
77
69
|
に変更しましたがエラー文が解消されることはありませんでした。
|
78
70
|
|
3
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
|
43
43
|
// ファイルから読み込み0
|
44
44
|
|
45
|
-
|
45
|
+
val source = Source.fromFile("C:\Users\xxx\Documents\scala\s.json", "UTF-8") // Shift_JIS, EUC-JP なども可 //該当の8行目
|
46
46
|
|
47
47
|
source.getLines.foreach{ line =>
|
48
48
|
|
2
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
|
43
43
|
// ファイルから読み込み0
|
44
44
|
|
45
|
-
val source = Source.fromFile("C:\Users\xxx\Documents\scala\s.json, "UTF-8") // Shift_JIS, EUC-JP なども可 //該当の8行目
|
45
|
+
val source = Source.fromFile("C:\Users\xxx\Documents\scala\s.json", "UTF-8") // Shift_JIS, EUC-JP なども可 //該当の8行目
|
46
46
|
|
47
47
|
source.getLines.foreach{ line =>
|
48
48
|
|
@@ -51,22 +51,6 @@
|
|
51
51
|
}
|
52
52
|
|
53
53
|
source.close()
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
// URL 指定でインターネットから読み込み
|
58
|
-
|
59
|
-
val source2 = Source.fromURL("http://www.example.com", "UTF-8")
|
60
|
-
|
61
|
-
source2.getLines.foreach{ line =>
|
62
|
-
|
63
|
-
println(line)
|
64
|
-
|
65
|
-
}
|
66
|
-
|
67
|
-
source2.close()
|
68
|
-
|
69
|
-
|
70
54
|
|
71
55
|
// 書き込み
|
72
56
|
|
1
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
|
43
43
|
// ファイルから読み込み0
|
44
44
|
|
45
|
-
val source = Source.fromFile("C:\Users\
|
45
|
+
val source = Source.fromFile("C:\Users\xxx\Documents\scala\s.json, "UTF-8") // Shift_JIS, EUC-JP なども可 //該当の8行目
|
46
46
|
|
47
47
|
source.getLines.foreach{ line =>
|
48
48
|
|
@@ -70,7 +70,7 @@
|
|
70
70
|
|
71
71
|
// 書き込み
|
72
72
|
|
73
|
-
val pw = new PrintWriter("C:\Users\
|
73
|
+
val pw = new PrintWriter("C:\Users\xxx\Documents\scala\t.json")
|
74
74
|
|
75
75
|
pw.write("Hello, world")
|
76
76
|
|