我使用日期选择器在编辑文本中输入生日。怎么抓住这个?

发布于 2024-10-31 11:01:56 字数 256 浏览 0 评论 0原文

可能的重复:
使用 Jquery Datepicker 获取日期

我有一个注册页面,里面有生日框。 我使用日期选择器在编辑文本中输入生日。如何捕捉这个并放入网络服务器。我需要解析才能获取整数吗?

Possible Duplicate:
getDate with Jquery Datepicker

I have a registration page inside that I have birthdate box.
I am entering birthdate inside edittext using datepicker. How to catch this and put into web server. Do I need to parse to get integer ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

脸赞 2024-11-07 11:01:56

获取对 EditText 的引用并使用 getText() 方法获取文本并
关于如何放入网络服务器,

这可以是其中一种方式。
检查一下,
Android (Java) 使用服务器简单发送和接收- 快速设置挑战

Get reference to your EditText and use getText() method to get the text and
on How to put into web server,

This can be one of the way.
Check this,
Android (Java) Simple Send and receive with Server - Fast Setup Challenge

花想c 2024-11-07 11:01:56

您可以尝试以下操作,从而可以获得整数的各个组成部分(日、月和年)

final DatePicker datePick = (DatePicker) findViewById(R.id.proposeDate);

int day = datePick.getDayOfMonth();
int month = datePick.getMonth();
int year = datePick.getYear();

you can try the following, whereby you can get the various components (day, month and year) as integers

final DatePicker datePick = (DatePicker) findViewById(R.id.proposeDate);

int day = datePick.getDayOfMonth();
int month = datePick.getMonth();
int year = datePick.getYear();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文