Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

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

New Here ,
Oct 11, 2015 Oct 11, 2015

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)

488
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 13, 2015 Oct 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>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Oct 13, 2015 Oct 13, 2015
LATEST

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

Cheers

Eddie

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources