回答編集履歴
1
typo
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
例外の直接の原因は、ここです。
|
1
|
+
例外の直接の原因は、ここです。JavaFXはまったく関係していません。
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -103,3 +103,35 @@
|
|
103
103
|
</children>
|
104
104
|
|
105
105
|
```
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
----
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
また、このあたりも無茶苦茶ですね。
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
```java
|
118
|
+
|
119
|
+
public class Controller implements Initializable {
|
120
|
+
|
121
|
+
private ObservableList<Persons> pList;
|
122
|
+
|
123
|
+
...
|
124
|
+
|
125
|
+
public void initialize(URL location, ResourceBundle resources) {
|
126
|
+
|
127
|
+
Persons ps = new Persons();
|
128
|
+
|
129
|
+
File_read fr = new File_read();
|
130
|
+
|
131
|
+
fr.loadXml(...);
|
132
|
+
|
133
|
+
amaview.setItems(pList);
|
134
|
+
|
135
|
+
```
|
136
|
+
|
137
|
+
File_readのpListと、ControllerのpListはベツモノです。setItems()でNPEが発生するでしょう。おそらく。
|