Showing posts with label File. Show all posts
Showing posts with label File. Show all posts
Wednesday, 3 August 2016
How to read text file from static resource Salesforce.
19:00
Method to read Text File from static resource.
public String textFromSomeUniqueName {
get {
StaticResource sr = [
select Body
from StaticResource
where Name = 'SomeUniqueName'
];
return sr.Body.toString();
}
}
Subscribe to:
Posts (Atom)