Copy link to clipboard
Copied
need to read the file and pass the bytes[].
Can i create a java object and use it in coldfusion like below please help:
pathOb = createObject("java", "java.nio.file.Paths");
files = createObject("java", "java.nio.file.Files");
path = pathOb.get("file"); data = Files.readAllBytes(path)
Copy link to clipboard
Copied
Yes, you may do that. As long as the class paths are valid.
Take this basic Java object as example
<cfset str1 = createobject("java","java.lang.String").init("Bat")>
<cfset str2 = str1.concat("man")>
<cfoutput>#str2#</cfoutput>
Copy link to clipboard
Copied
It's worth noting that you do not have to do this in JAVA, you can use the cfFile tag in ColdFusion.
Cheers
Eddie
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more