将值输入到文本字段,流回网站

发布于 2024-11-24 05:21:44 字数 840 浏览 1 评论 0原文

我连接到一个网站,使用 JSoup 查找“文本字段”ID,输入值,现在我需要将其流式传输。

有人可以帮助我使用正确的编码将“修改后的”文档流回网站吗?

if (source == enter2) 
{

            String URL = "http://www.clubvip.co.za/Login.aspx";
            Element number;
            Element pass;
            Element keyword;
            try {
                Document doc = Jsoup.connect(URL).get();
                number = doc.getElementById("ctl00_ContentPlaceHolder1_CellNumberRadText").attr("value", "number");
                System.out.println(number);
                pass = doc.getElementById("ctl00_ContentPlaceHolder1_PasswordRadText").attr("value", "password");
                System.out.println(pass);
                keyword = doc.getElementById("ctl00_ContentPlaceHolder1_KeyWordRadText").attr("value", "keyword");
                System.out.println(keyword);

I connected to a website, used JSoup to find the "textfield" ID's, input the values, now i need to stream it out.

Can someone please help me with the correct coding to stream the "modified" doc back to the website?

if (source == enter2) 
{

            String URL = "http://www.clubvip.co.za/Login.aspx";
            Element number;
            Element pass;
            Element keyword;
            try {
                Document doc = Jsoup.connect(URL).get();
                number = doc.getElementById("ctl00_ContentPlaceHolder1_CellNumberRadText").attr("value", "number");
                System.out.println(number);
                pass = doc.getElementById("ctl00_ContentPlaceHolder1_PasswordRadText").attr("value", "password");
                System.out.println(pass);
                keyword = doc.getElementById("ctl00_ContentPlaceHolder1_KeyWordRadText").attr("value", "keyword");
                System.out.println(keyword);

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

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

发布评论

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

评论(2

硪扪都還晓 2024-12-01 05:21:44

你为什么要这样做?

如果您需要登录该网页,只需获取参数并通过 HTTP POST 请求将它们发送到

指向

Why are you doing it like this?

If you need to login to that webpage, simply take arguments and send them via HTTP POST request to page where <form> points to

which is <form method="post" action="login.aspx">

无语# 2024-12-01 05:21:44

而不是你正在做的事情:

Jsoup.connect("http://www.clubvip.co.za/Login.aspx")//
     .data("ctl00_ContentPlaceHolder1_CellNumberRadText", "number", 
           "ctl00_ContentPlaceHolder1_PasswordRadText", "password",
           "ctl00_ContentPlaceHolder1_KeyWordRadText", "password").post();

未经测试,所以可能不是100%正确......

Instead of what you are doing:

Jsoup.connect("http://www.clubvip.co.za/Login.aspx")//
     .data("ctl00_ContentPlaceHolder1_CellNumberRadText", "number", 
           "ctl00_ContentPlaceHolder1_PasswordRadText", "password",
           "ctl00_ContentPlaceHolder1_KeyWordRadText", "password").post();

not tested, so possibly not 100% correct...

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