Javaファイル内のデータ用のXMLファイルを生成したいとします。日付がファイルされており、XMLファイルに日付として取得したいと考えています。私はcreateTextNodeを使用しましたが、文字列が必要です。ここでXMLにJavaの日付形式を取得する方法は?
は私のコード
Element doctor=doc.createElement("doctor");
doctor.appendChild(doc.createTextNode(prescriptionData.getDoctor().getName()));
prescription.appendChild(doctor);
Element patient=doc.createElement("patient");
patient.appendChild(doc.createTextNode(prescriptionData.getPatient().getPatientName()));
prescription.appendChild(patient);
Element date=doc.createElement("date");
date.appendChild(doc.createTextNode(prescriptionData.getPrescribedDate()));