function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sekhar maramreddysekhar maramreddy 

how to create choose file using apex class and vf page it display in record detail page

how to create choose file using apex class and vf page it display in record detail page 
Raj VakatiRaj Vakati
Hi Sekhar ,
Please find the page and controller here. 
<apex:page id="uploadImagePage" standardController="Contact" extensions="Fileuploader" sidebar="false">
    <script>
    function verifyNameLength(){
        var textVal = document.getElementsByName('uploadImagePage:uploadAttachment:newAttach:inputFile:file')[0].value;
        
        if( textVal != "" ) 	{
            var browser = navigator.userAgent;
            var fileName = textVal;
            
            if( browser.search( 'MSIE' ) > 0 ) {
                var index 		= textVal.lastIndexOf( '\\' );
                fileName 		= textVal.substring( index +1);
            } 
            
            if( fileName.length < 70) {
                return true;
            };
        };
        if( textVal == "" )		{
            alert( 'Please select an image to upload' );
        } else {
            alert( 'The file name must be 70 characters maximum' );
        }
        document.getElementById('uploadImagePage:uploadAttachment').reset();
        return false;
    }
    </script>
    
    <apex:form id="uploadAttachment">
        
        <div class="input">
            <b>1. Select the File</b> :	Type the path of the file or click the Browse button to find the file.<br/>
            <apex:inputFile value="{!newAttach.Body}" 
                            id="newAttach" 
                            styleclass="newAttach" 
                            contentType="{!newAttach.ContentType}" 
                            filename="{!newAttach.Name}" 
                            fileSize="{!newAttach.BodyLength}" />
            <br/>
            <apex:outputText value="{!error}" escape="false" styleClass="errorMsg"/> 
        </div>
        
        <div class="buttons">
            <b>2. Click the "Upload" button or "Delete" button in order to delete the current picture </b><br/>
            <apex:commandButton id="Accept" action="{!uploadAction}" value="Upload" onclick="return verifyNameLength();"></apex:commandButton>
            <apex:commandButton id="Delete" action="{!deleteAction}" value="Delete" rendered="{!hasPicture}" onclick="return confirm('Are you sure you want to delete the current image?')"></apex:commandButton>
            <apex:commandButton id="Cancel" action="{!cancel}" value="Cancel"></apex:commandButton>
        </div> 
        
    </apex:form>
    
</apex:page>

public class Fileuploader {
    
    private final Integer MAX_SIZE          = 131072; // 128Kb
    private final Integer MAX_LENGTH_NAME   = 71;// File Length 
    private final String  ERROR_NO_SAVE     = 'Please upload file.'; // Error Message on No Save
    private final String  ERROR_IMG_TYPE    = 'The image must be .jpg, .gif or .png';    // Error Message for Non Allowed Type 
    
    //List Of Images Allowed 
    private Set<String> imagesTypes         = new Set<String> {'image/jpeg', 'image/pjpeg', 'image/png', 'image/x-png', 'image/gif'};
        //Not Allowd Type 
        private Set<String> notAllowedTypes     = new Set<String> {'application/octet-stream' , 'image/bmp'};
            
            public Attachment   newAttach           { set; get; }
    public Attachment   file                { set; get; }
    private String      parentId            { set; get; }
    public String       postAction          { set; get; }
    public String       error               { set; get; }
    public Boolean      hasPicture          { set; get; }
    
    public Fileuploader( ApexPages.StandardController stdController ){
        
        this.parentId       = stdController.getId();
        this.hasPicture     = false;
        this.newAttach      = new Attachment();
        this.error          = '';
        
        List<Attachment> attList = [ Select ParentId, Name, Id, ContentType, BodyLength From Attachment where ParentId =: this.parentId and name = 'Contact Picture' limit 1];
        if( attList.size() > 0 ){
            this.file               = attList.get( 0 );
            this.hasPicture         = true;
        }
    }
    public PageReference uploadAction(){
        
        PageReference thePage = new PageReference( '/'+ parentId );
        thePage.setRedirect( true );
        if( this.validate() ){
            return ( this.saveCurrentPicture() ) ? thePage : null;
        }
        else{
            this.newAttach = new Attachment();
            return null;
        }
    }
    
    public Boolean saveCurrentPicture(){
        Savepoint sp = Database.setSavepoint();
        try{
            delete [ Select Id From Attachment where ParentId =: this.parentId and name = 'Contact Picture' limit 1 ];
            this.newAttach.parentId = this.parentId;
            this.newAttach.name = 'Contact Picture';
            insert this.newAttach;
            return true;
        } 
        catch( Exception e ){
            this.error += ERROR_NO_SAVE+'<br/>';
            Database.rollback( sp );
            return false;
        }
    }
    
    public PageReference deleteAction(){
        
        PageReference thePage = new PageReference( '/'+ parentId );
        thePage.setRedirect( true );
        delete this.file;
        return thePage;
    }
    
    private Boolean validate(){
        Boolean ret = true;
        this.error = '';
        if( !imagesTypes.contains( newAttach.ContentType ) ){
            this.error += ERROR_IMG_TYPE+'<br/>';
            ret = false;
        }
        return ret;
    }
    
    public PageReference cancel(){
        PageReference thePage = new PageReference( '/'+ parentId );
        thePage.setRedirect( true );
        return thePage;
    }
    
    
}