1 つのデータベースに関連する条件に基づいてエッジをカスタマイズしようとしています。しかし、適切な出力を得ることができませんでした。私は以下のコードを試しました。
Transformer<String, Paint> edgePaint = new Transformer<String, Paint>() {
public Paint transform(String s) {
connection = connection1.dbConnector(); // graph
try {
String qr = "select Inter from gene1 where Disease='Breast Neoplasms'";
PreparedStatement pest = connection.prepareStatement(qr);
ResultSet rs = pest.executeQuery();
while (rs.next()) {
// for (j = 0; j <= 1; j++) {
name2[j] = rs.getString("Inter");}
for (j = 0; j <= 30; j++) {
if (name2[j] == "direct")
return Color.CYAN;
else
return Color.BLUE;
}
rs.close();
pest.close();
} catch (Exception e1) {
// JOptionPane.showMessageDialog(null, e1);
}
return null;
}
};
誰でもこれで私を助けることができます