Content-Disposition Parser
ตัวแยกวิเคราะห์ Content-Disposition
แยกวิเคราะห์ส่วนหัว Content-Disposition: ประเภทการจัดเก็บ, ชื่อไฟล์ และ filename* สำหรับชื่อไฟล์สากลและการเข้ารหัส RFC 5987
สรุปการแยกวิเคราะห์
ประเภทการจัดเก็บ
attachment
ชื่อไฟล์ที่มีผล
report Q2.csv
ชื่อไฟล์
report.csv
filename*
UTF-8''report%20Q2.csv
ตัวสร้าง
attachment; filename="report.csv"; filename*=UTF-8''report%20Q2.csvตัวอย่าง JSON
{
"type": "attachment",
"parameters": {
"filename": "report.csv",
"filename*": "UTF-8''report%20Q2.csv"
},
"effectiveFilename": "report Q2.csv",
"warnings": []
}