in Education by
I want parse one line from html site, but my code not working MainActivity: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build(); StrictMode.setThreadPolicy(policy); TextView textView = (TextView)findViewById(R.id.result); Document doc = null; try { doc = Jsoup.connect("http://ru.todaysdate365.com/").get(); Elements divs = doc.select("div#dateShow"); for (Element div : divs) textView.setText(div.text()); } catch (IOException e) { e.printStackTrace(); } } I parse div with id "dateShow" from http://ru.todaysdate365.com/ html capture JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Sorry bro Your date is loaded by JavaScript and Jsoup doesn't support js. Use htmlUnit. Your website response .Look there is no date

Дата сегодня:

$(function() { var tz = jstz.determine(); var timezone = tz.name(); $("#dateShow").load("/getdate.php?lang=ru&tz="+timezone); });

Related questions

0 votes
    Error:Execution failed for task ':app:dexDebug'. com.android.ide.common.process.ProcessException: org.gradle. ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    I get an java.lang.OutOfMemoryError: GC overhead limit exceeded when run gradle on Android 1.4 ... ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 11, 2022 in Education by JackTerrance
0 votes
    I have a drawer menu, which allows users to enter filter details, which will update a recycler view list ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    I am just getting started towards android and i am having trouble with my hello world app, The problem ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 17, 2022 in Education by JackTerrance
0 votes
    I have few questions about handling large bitmaps, I couldn't find answer on the topics I found where ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 17, 2022 in Education by JackTerrance
0 votes
    Question No. 6 Which of the following module is not used for parsing command line arguments automatically ? O ... argparse O getopt Select the correct answer from above options...
asked Dec 1, 2021 in Education by JackTerrance
0 votes
    Which class allows parsing of command line arguments? (a) Args (b) JCommander (c) Command Line (d) ... programming questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
0 votes
    One way to pass data around is by de parsing the R object with _________ (a) dput() (b) write() (c ... and Operations of R Programming Select the correct answer from above options...
asked Feb 12, 2022 in Education by JackTerrance
0 votes
    Write the HTML code to get the line with 5 as thickness, length 50% and color as red Select the correct answer from above options...
asked Dec 24, 2021 in Education by JackTerrance
0 votes
    tag produces a horizontal line in the browser window. C. a. b. d. Select the correct answer from above options...
asked Dec 9, 2021 in Education by JackTerrance
0 votes
    Why the parsing is used? (a) Interpretation (b) Building a parse tree (c) Recognition (d) All of the mentioned Please answer the above question....
asked Oct 22, 2022 in Education by JackTerrance
0 votes
    How many states are present in parsing? (a) 1 (b) 2 (c) 3 (d) 4 Please answer the above question....
asked Oct 22, 2022 in Education by JackTerrance
0 votes
    Pick out the correct option about the types of parsing. (a) Top-down and bottom-up parsing (b) Interpretation and ... (d) None of the mentioned Please answer the above question....
asked Oct 22, 2022 in Education by JackTerrance
0 votes
    Parsing determines Parse Trees (Grammatical Analysis) for a given sentence. (a) True (b) False I got ... and Acting of Artificial Intelligence Please answer the above question....
asked Oct 9, 2022 in Education by JackTerrance
0 votes
    Parsing determines Parse Trees (Grammatical Analysis) for a given sentence. (a) True (b) False I got ... and Acting of Artificial Intelligence Please answer the above question....
asked Oct 2, 2022 in Education by JackTerrance
...