向 .cfm 网页提供信息并检索结果
我什至不知道如何称呼我想做的事情。
我想编写一个 Android 应用程序,它连接到 Google 高级搜索等网站,填写一些字段,启动搜索,然后从网站检索结果。
因此,如果您知道我为了实现这一目标必须使用的技术或工具的名称......请启发我:)。
PS:我了解 Java 并且我已经编写了一些 Android 应用程序。
编辑:实际上我想使用的网页就像 http://www.glossary.mycompany .com/mainsearch.cfm
http://www.glossary.mycompany.com/MainIndex.cfm?ID=1
I do not even know how to call what I want to do.
I'd like to write an Android application which connects to a website like the Google's advanced search, fill in some fields, launch the search and then retrieve the results from the website.
So if you know names of techs or tools that I have to use in order to achieve this... enlighten me :).
PS : I know Java and I have already written some Android app.
EDIT : actually the webpage I want to use is like http://www.glossary.mycompany.com/mainsearch.cfm
http://www.glossary.mycompany.com/MainIndex.cfm?ID=1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像 Google 高级搜索这样的网站会在 URL 中提供参数,以便处理用户输入的信息。也许您可以在您的应用程序中使用相同的方法,使用 Stringbuilder 构建包括您的参数的整个 URL,然后启动 Intent / WebView与你的那个网址。
Websites like the Google Advanced Search give parameters in the URL in order to process the info a user puts in. Maybe you could use the same for your app, using a Stringbuilder to build the entire URL including your parameters, then starting an Intent / WebView with your that URL.