Android Application Development: Database Storage and Network Programming
SQLite Database Management
CRUD Operations Using SQL Statements
The SQLiteOpenHelper class manages database creation and version management. When calling getWritableDatabase() or getReadableDatabase(), the system creates the database if it doesn't exist and returns an existing database instance otherwise.
public class DatabaseActivity extends A ...
Posted on Fri, 14 Aug 2026 16:47:15 +0000 by fireMind
Data Extraction from HTML Using Java and Regular Expressions
Regular expressions (regex) serve as a powerful mechanism for identifying and extracting specific patterns within large blocks of text. In the context of web scraping, regex allows developers to parse HTML source code to retrieve specific data points such as URLs, email addresses, or meta tags without the overhead of a full DOM parser.
Core Com ...
Posted on Tue, 04 Aug 2026 16:53:23 +0000 by laurajohn89
HTTP Connection Management with HttpURLConnection
Request-Response Flow
Connection Configuration Methods
setAllowUserInteraction
setDoInput
setDoOutput
setIfModifiedSince
setUseCaches
setDefaultAllowUserInteraction
setDefaultUseCaches
Header Management
setRequestProperty(key,value)
addRequestProperty(key,value)
setRequestProperty replaces all existing values for a given key, effectively cl ...
Posted on Wed, 13 May 2026 03:23:18 +0000 by jdm95lude