我真的不知道如何获得这个实现,即获取一个数据,它将是动态的,并用上面的样式表示。
我衷心感谢你抽出时间。
public class Home_pageController extends Application {
@FXML
private GridPane myGrid;
@FXML
private JFXButton yes_button;
/**
* Initializes the controller class.
*/
/**
* Initializes the controller class.
*/
@Override
public void start(Stage stage) throws Exception {
// Parent root = FXMLLoader.load(getClass().getResource("Student.fxml"));
getGrid();
Parent root = FXMLLoader.load(getClass().getResource("home_page.fxml"));
//GridPane root = new GridPane();
Scene scene = new Scene(root);
stage.setTitle("Some scene");
stage.setScene(scene);
stage.show();
}
/**
* @param args the command line arguments
*/
public void getGrid() {
List<ImageDataObjs> imageURLs ; //you'll use something like this, but I've not for this little helper
//here you'll want to make a database setup and a call: This is a really bad program, but it will demonstrate
conn = javaconnect.ConnectDb();
imageURLs = makeDBCall();
GridPane gridPane = new GridPane();
// myGrid.setGridLinesVisible(true);
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 5; j++) {
System.out.print("Just me here again "+imageURLs.get(i).the_image);
Label label = new Label("Label " + i + "/" + j);
// label.setMouseTransparent(true);
GridPane.setRowIndex(label, i);
GridPane.setColumnIndex(label, j);
myGrid.getChildren().add(imageURLs.get(10).the_image);
}
}
}
public static void main(String[] args) {
launch(args);
}
class ImageDataObjs {
// final ImageView imageView;
// String imgURL, price;
@FXML
final ImageView the_image;
String imgURL;
byte[] price;
public ImageDataObjs(String imgURL, byte[] price) throws IOException {
this.imgURL = imgURL;
this.price = price;
InputStream in = new ByteArrayInputStream(price);
WritableImage images = new WritableImage(50, 50);
ByteArrayInputStream bis = new ByteArrayInputStream(price);
BufferedImage read = ImageIO.read(bis);
images = SwingFXUtils.toFXImage(read, null);
this.the_image = new ImageView(images);
}
}
Connection conn = null;
ResultSet rs = null;
PreparedStatement pst = null;
static byte[] staff_image;
//there a million examples of theis on the web
private List<ImageDataObjs> makeDBCall() {
List<ImageDataObjs> imageDataObjList = new ArrayList<>();
// String myPrice, myURL;
byte[] myPrice;
String myURL;
try {
String sql = "select * from phone_types";
pst = conn.prepareStatement(sql);
rs = pst.executeQuery();
while (rs.next()) {
myPrice = rs.getBytes("phone_image");
myURL = rs.getString("phone_name");
System.out.println("I am just here "+ myPrice);
imageDataObjList.add(new ImageDataObjs(myURL, myPrice));
}
conn.close();
} catch (Exception e) {
e.printStackTrace();
}
return imageDataObjList;
}
}
我得到了
原因:controllers.home_pageController处的java.lang.nullPointerException。controlers.home_pageController处的getGrid(home_pageController.java:85)。start(home_pageController.java:54)处的com.sun.javafx.application.launchimpl.lambda$launchapplication1$162(launchimpl.java:863)处的
我想您确实喜欢JavaFX FXML,但我会将您引向JDBC和一些手工编写的JavaFX。
步骤是安装MYSQL、安装ConnectorJ(这是一种从代码连接到MYSQL(驱动程序)的方法)、记录密码、创建一个新的数据库、添加一个表和所需的列。
警告:这是一个很大的问题,在很多地方都有,但是您已经问过了,所以我提供了一些代码。GUI部分将运行,数据库部分将需要调整。
我还在下面为您演示了一个GridPane。但我认为您需要的是绑定变量,以便视图自动更新--作为开始,正如我在代码中所评论的,请查看TableView和Cell工厂。此外,还可以查看数据绑定和类:https://docs.oracle.com/javase/8/javafx/api/javafx/beans/property/simpleStringProperty.html
这段代码有很多错误:您永远不应该从您的GUI线程进行DB调用,等等。但你得从某处开始。如果这有帮助,请相应地标记。
import com.techtalix.util.Const;
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.GridPane;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
public class Test extends Application {
Connection connect = null;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) {
List<ImageDataObjs> imageURLs = null; //you'll use something like this, but I've not for this little helper
//here you'll want to make a database setup and a call: This is a really bad program, but it will demonstrate
connectToDB();
imageURLs = makeDBCall();
GridPane root = new GridPane();
Scene theScene = new Scene(root);
stage.setTitle("Some scene");
stage.setScene(theScene);
root.setPadding(new Insets(10,10,10,10));
root.setHgap(10);
root.setVgap(10);
int cols=2, colCnt = 0, rowCnt = 0;
for (int i=0; i<imageURLs.size(); i++) {
root.add(imageURLs.get(i).imageView, colCnt, rowCnt);
colCnt++;
if (colCnt>cols) {
rowCnt++;
colCnt=0;
}
}
// in terms of auto update, instead of gridpane, I suggest you look into TableView, and cell factories.
// once you have bound your cell factories, you can make calls to your DB, and the values bound will update automatically
//http://www.java2s.com/Tutorials/Java/JavaFX/0650__JavaFX_TableView.htm
stage.initStyle(StageStyle.UNDECORATED); //remove this is you want to see the title bar etc.
stage.show();
}
class ImageDataObjs {
final ImageView imageView;
String imgURL, price;
public ImageDataObjs(String imgURL, String price) {
this.imgURL = imgURL;
this.price = price;
Path imagePath = Paths.get(imgURL);
File imageFile = imagePath.toFile();
Image image = new Image(imageFile.toURI().toString());
this.imageView = new ImageView(image);
}
}
//there a million examples of theis on the web
private List<ImageDataObjs> makeDBCall() {
List<ImageDataObjs> imageDataObjList = new ArrayList<>();
String myPrice, myURL;
try {
Statement statement = connect.createStatement();
ResultSet resultSet = statement
.executeQuery("select * from myProductList"); //you need to have a table called myProductList in your database
while (resultSet.next()) {
myPrice = resultSet.getString("myImageURL"); //these are the SQL cols that you should have already created in your database
myURL = resultSet.getString("somePriceData");
imageDataObjList.add(new ImageDataObjs(myURL, myPrice));
}
connect.close();
} catch (Exception e) {
e.printStackTrace();
}
/*
JUST FOR EXAMPLE - this would come from your database query
*/
imageDataObjList.add(new ImageDataObjs(Const.BASE_DIRECTORY + "png/bridge.png", "1.99"));
imageDataObjList.add(new ImageDataObjs(Const.BASE_DIRECTORY + "png/bridge.png", "2.99"));
imageDataObjList.add(new ImageDataObjs(Const.BASE_DIRECTORY + "png/bridge.png", "3.99"));
imageDataObjList.add(new ImageDataObjs(Const.BASE_DIRECTORY + "png/bridge.png", "4.99"));
imageDataObjList.add(new ImageDataObjs(Const.BASE_DIRECTORY + "png/bridge.png", "5.99"));
imageDataObjList.add(new ImageDataObjs(Const.BASE_DIRECTORY + "png/bridge.png", "6.99"));
imageDataObjList.add(new ImageDataObjs(Const.BASE_DIRECTORY + "png/bridge.png", "6.99"));
return imageDataObjList;
}
private void connectToDB() {
//Note: you'll still it in tutorials, but Class.forName() is not needed since JDBC 4.0.
//make sure but this point that MYSQL is installed, and that ConnectorJ is also installed.
//create a database called "someDatabase" - make sure user and password are are you installed them.
try {
connect =
DriverManager.getConnection("jdbc:mysql://localhost/someDatabase" +
"?user=root&password=root");
} catch (SQLException e) {
e.printStackTrace();
}
}
}
问题内容: 我想要具有不同状态的实体(控件或属性),可以通过CSS对其进行着色。 例如,以TextField为例,它可以包含两种值,正常值和错误值。一旦包含错误值,则应显示为“红色”。但是实际颜色应该可以从CSS定义。 这可能实现吗? 我发现了很多接口或类,但是它们看起来可以接受任何样式。 我可以编写和实体,从价值中衍生出风格吗? 问题答案: 您可以使用: 用这样的CSS: 虽然老实说,我不能完全
我开始着手一个JavaFX项目,在这个项目中,我想添加一个复制的文本,而不必更改驱动程序中的格式和图像(它应该像open office一样工作)。图像应该能够放置在文本中不同的位置。因此,我需要一个可以处理rtf格式的控制字段。 为此,我找到了RichTextFX。文档中解释了如何使用Maven或Grandle运行RichTextFX。我不使用Maven或Grandle,因此我想知道是否有可能在不
我正在编写一个JavaFX应用程序,它需要绘制有向图。我想通过形状来实现这一点,因为我希望可以拖动顶点。我用一个圆来表示一个顶点,但是当我试图找到一个形状来表示有向边时,我遇到了一个问题。< br >有向边应该看起来像一个箭头,我的想法是用一条线和一个三角形来表示它。所以我扩展了javafx.scene.shape.Line类: 由于顶点可以拖动,当然边缘应该同时移动,这意味着箭头内的三角形应该根
我需要在中选择多个图像,并在中添加共享和删除按钮。 My类别: 但是当我试图打开Gridview时,它给我一个错误。 我的Logcat细节 02-10 21:10:46.965 21658-21658/com。Android示例E/AndroidRuntime﹕ 致命异常:主进程:com。Android例如,PID:21658java。ClassCastException:android。小装置。
我非常喜欢React中的内联CSS模式,并决定使用它。 但是,不能使用和类似的选择器。那么,在使用内联CSS样式时,实现悬停高亮显示的最佳方法是什么? #reactjs的一个建议是使用一个可点击的
我是JavaFx新手。我在FXML中创建了一个网格窗格。我想将该网格窗格设置为下图。我尝试了以下答案,并尝试了更多的CSS元素。但这些都没有帮助我做到这一点。 用于GridPane、VBox、VBox的JavaFX CSS类 使用CSS在GridPane中居中显示子项 向GridPane JavaFX添加边框 我是否也使用了错误的方法?我可以使用GridPane实现这一点,还是TableView很