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

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

New Here ,
Oct 11, 2015 Oct 11, 2015

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)

Views

390

Translate

Translate

Report

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

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>

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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
Documentation