Tagged articles
110 articles
Page 2 of 2
FunTester
FunTester
Nov 14, 2019 · Backend Development

Web Scraping CBA Match Data with Java: Methodology and Full Code Example

This article explains how to scrape Chinese Basketball Association (CBA) match data from a portal website, analyzes the page structure, extracts table rows using regular expressions, converts them to CSV format, and provides a complete Java/Groovy code example for automated data collection.

CBACSVWeb Scraping
0 likes · 8 min read
Web Scraping CBA Match Data with Java: Methodology and Full Code Example
Python Crawling & Data Mining
Python Crawling & Data Mining
Aug 11, 2019 · Fundamentals

How to Scrape and Visualize a Year of Global Earthquake Data with Python

This tutorial walks you through discovering a real‑time earthquake data source, analyzing its pagination API, building a Python scraper with requests, parsing the JSON responses, storing the results in CSV, and performing visual analyses such as top‑magnitude locations, monthly frequency, repeat‑site counts, magnitude distribution, and word‑cloud generation.

CSVEarthquake DataPython
0 likes · 8 min read
How to Scrape and Visualize a Year of Global Earthquake Data with Python
System Architect Go
System Architect Go
Jul 1, 2017 · Frontend Development

Exporting Table Data to CSV on the Frontend Using Blob and a.download

This article explains how to generate and download CSV files directly in the browser by converting JSON data into comma‑separated values, using the Blob API and the anchor element’s download attribute, and includes advanced techniques for custom headers and handling Excel formatting issues.

BlobCSVDownload
0 likes · 5 min read
Exporting Table Data to CSV on the Frontend Using Blob and a.download
Programmer DD
Programmer DD
Jun 14, 2017 · Backend Development

Mastering Spring Batch: Read & Write Flat Files (XML, CSV, TXT)

This tutorial walks through using Spring Batch to read and write flat files—including CSV, TXT, and XML—by configuring Maven dependencies, setting up a Spring Boot project structure, and implementing FlatFileItemReader, FlatFileItemWriter, and custom ItemProcessor components with concrete code examples.

CSVSpring BatchXML
0 likes · 8 min read
Mastering Spring Batch: Read & Write Flat Files (XML, CSV, TXT)
21CTO
21CTO
Apr 11, 2016 · Databases

How to Import JSON, XML, CSV, and Text Files into MySQL Efficiently

This article explains practical methods for importing various external data formats—such as CSV, plain text, XML, and JSON—into MySQL, covering command-line utilities, LOAD DATA statements, stored procedures, third‑party tools like mysqljsonimport, and using MySQL Workbench, while addressing configuration and security considerations.

CSVJSONLOAD DATA
0 likes · 11 min read
How to Import JSON, XML, CSV, and Text Files into MySQL Efficiently