Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Code Block | ||
---|---|---|
| ||
import java.io.File; import java.io.IOException; import org.joget.apps.form.service.FileUtil; String recordId = "ID-0001"; String tableName = "crm_contact"; String fileName = "profile_image.png"; //Get the uploaded file of a form data record try { File profileImage = FileUtil.getFile(fileName, tableName, recordId); }catch (IOException e) {} |
Thai |
---|
กระบวนการ |
public static void checkAndUpdateFileName(org.joget.apps.form.model.FormRowSet results, org.joget.apps.form.model.Element form, java.lang.String primaryKeyValue)
...
public static java.io.File getFile(java.lang.String fileName, org.joget.apps.form.model.Element form, java.lang.String primaryKeyValue) throws java.io.IOException
English |
---|
Gets the file from target upload directory of a form data record |
Thai |
---|
รับไฟล์จากไดเร็กทอรีอัพโหลดเป้าหมายของบันทึกข้อมูลแบบฟอร์ม |
...
Thai |
---|
จัดเก็บไฟล์เพื่อกำหนดเป้าหมายไดเรกทอรีอัปโหลดของบันทึกข้อมูลฟอร์ม |
public static java.io.File getFile(java.lang.String fileName, org.joget.apps.form.model.Element form, java.lang.String primaryKeyValue) throws java.io.IOException
Gets the file from target upload directory of a form data record
Thai |
---|
รับไฟล์จากไดเร็กทอรีอัพโหลดเป้าหมายของบันทึกข้อมูลแบบฟอร์ม |
public static void storeFile(org.springframework.web.multipart.MultipartFile file, org.joget.apps.form.model.Element form, java.lang.String primaryKeyValue)
...