Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 jsp 注册表单,其中包含邮政编码作为其字段之一,它接受 5 位整数作为输入。但现在的问题是,如果输入包含数字“0”作为起始数字,那么在提交表单时数字“0”将被忽略。我的 servlet 类中只有 4 位数字。
示例:如果输入为 02345
I will get 2345 in my servlet, but expected value is 02345.
实际上的问题是,我将邮政编码存储为整数,将其存储为字符串解决了我的问题。在发布这个问题之前,一旦它节省了我的时间以及阅读这篇文章的其他人,我就会看到我的模型课