我正在研究 javas 服务器的面孔。我使用 User.java 类作为模型,UserController 作为控制器,使用 index.xhtml,ViewProfile,xhtml 作为视图。我跟踪了以下代码,我观察到 setter 方法 set setUploadedFile(UploadedFile file){} 没有调用。而其他两个 setter 正在调用。它给出了 NullPointerException。是什么原因 ?我没有得到。这是代码
用户控制器.java
@Named("controller")
@RequestScoped
public class UserController implements Serializable
{
private User user=new User();
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public String submit() throws IOException ,SQLException ,ClassNotFoundException, InstantiationException, IllegalAccessException
{
String fileName = FilenameUtils.getName(user.getUploadedFile().getName());
byte[] bytes = user.getUploadedFile().getBytes();
int index=fileName.indexOf('.');
String extension=fileName.substring(index);
File file;
String path;
path = "C:/Users/";
if(extension.equalsIgnoreCase(".jpg")||extension.equalsIgnoreCase(".jpeg")||extension.equalsIgnoreCase(".png")||extension.equalsIgnoreCase(".gif")||extension.equalsIgnoreCase(".tif"))
{
file=new File(path);
if(!file.exists())
{
file.mkdir();
}
path=file+"/"+fileName;
FileOutputStream outfile=new FileOutputStream(path);
outfile.write(bytes);
outfile.close();
PreparedStatement stmt;
Connection connection;
String url="jdbc:mysql://localhost:3306/userprofile";
Class.forName("com.mysql.jdbc.Driver").newInstance();
connection = DriverManager.getConnection(url, "root", "mysql");
stmt = connection.prepareStatement("insert into table_profile values('"+user.getUserName()+"','"+user.getUserId()+"','"+path+"')");
stmt.executeUpdate();
connection.close();
return "SUCCESS";
}
else
{
return "fail";
}
}
}
用户.java
import org.apache.myfaces.custom.fileupload.UploadedFile;
public class User implements java.io.Serializable
{
private String userName;
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
System.out.println("in setter of username");
this.userName = userName;
}
private String userId;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
System.out.println("in setter of userid");
}
private UploadedFile uploadedFile;
public UploadedFile getUploadedFile()
{
return uploadedFile;
}
public void setUploadedFile(UploadedFile uploadedFile)
{
this.uploadedFile = uploadedFile;
System.out.println("in setter of upload");
}
}
索引.xhtml
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:t="http://myfaces.apache.org/tomahawk">
<h:head>
<title>Profile Demo</title>
</h:head>
<h:body>
<h:form>
<h:panelGrid columns="2">
<h:outputLabel for="userId">User Id</h:outputLabel>
<h:inputText id="userId" value="#{controller.user.userName}" required="true"></h:inputText>
<h:outputLabel for="username">Username</h:outputLabel>
<h:inputText id="username" value="#{controller.user.userId}" required="true"></h:inputText>
<h:outputLabel for="photo">Profile Picture</h:outputLabel>
<t:inputFileUpload value="#{controller.user.uploadedFile}" required="true"></t:inputFileUpload>
<h:commandButton value="Register" action="#{controller.submit()}"></h:commandButton>
</h:panelGrid>
</h:form>
</h:body>
</html>