Skip to main content
vipran
Participant
October 11, 2015
Question

coldfusion need to read the file and pass the bytes[].

  • October 11, 2015
  • 2 replies
  • 471 views

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)

This topic has been closed for replies.

2 replies

EddieLotter
Inspiring
October 13, 2015

It's worth noting that you do not have to do this in JAVA, you can use the cfFile tag in ColdFusion.

Cheers

Eddie

BKBK
Community Expert
Community Expert
October 13, 2015

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>