I love your style of operation
That's an intelligent answer to a difficult quietson xxx
need conversion
personal file,
The .doc created by TextToWord program does not open Word like the .csv file opens in Excel "Help".
The .doc does no open like the .csv file.
Soft
I want to have a text copy paste the image into Word, I think I should Chkarknm
//@ResponseBody @RequestMapping(value = "/jobseekerDownloadCoverLetter", method = RequestMethod.GET) public ModelAndView jobseekerDownloadCoverLetter(HttpServletRequest request, HttpSession session, ResCoverLetterForm resCoverLetterForm, BindingResult result,HttpServletResponse response) { //ModelAndView model = new ModelAndView(); //String file = null; try { String covId=request.getParameter("coverletterId"); int coverletterId=Integer.parseInt(covId); ResCoverLetterDTO listOfCoverLetter=coverLetterService.getCoverList(coverletterId); if (listOfCoverLetter!=null){ resCoverLetterForm.setActive(listOfCoverLetter.getActive()); resCoverLetterForm.setCoverletterId(listOfCoverLetter.getCoverletterId()); resCoverLetterForm.setCoverletterText(listOfCoverLetter.getCoverletterText()); resCoverLetterForm.setName(listOfCoverLetter.getName()); resCoverLetterForm.setUserId(listOfCoverLetter.getUserId()); String fileName=""; fileName=listOfCoverLetter.getName(); LOGGER.info("Filename:"+fileName); String fName=fileName; FileOutputStream fs = new FileOutputStream(fName); OutputStreamWriter out = new OutputStreamWriter(fs); out.write(listOfCoverLetter.getName()); out.write(listOfCoverLetter.getCoverletterText()); response.setContentType( "application/msword"); response.setHeader("Content-Disposition","attachment; filename="+fName); response.setHeader("Cache-Control", "no-cache"); byte[] bytesGot = listOfCoverLetter.getCoverletterText().getBytes(); ServletOutputStream outs = response.getOutputStream(); outs.write(bytesGot); /* String filePath = "C:\\test reference-material"; File f=new File(filePath, fileName); String fileType = fileName.substring(fileName.indexOf(".")+1,fileName.length()); LOGGER.info("Filetype:"+fileType+";"+f.length());*/ // if (fileType.trim().equalsIgnoreCase("txt")) { // response.setContentType( "text/plain" ); /* } else if (fileType.trim().equalsIgnoreCase("doc")) { response.setContentType( "application/msword" ); } else if (fileType.trim().equalsIgnoreCase("xls")) { response.setContentType( "application/vnd.ms-excel" ); } else if (fileType.trim().equalsIgnoreCase("pdf")) { response.setContentType( "application/pdf" ); LOGGER.info("content type set to pdf"); } else { response.setContentType( "application/octet-stream" ); } */ // response.setContentLength((int)f.length()); /* PrintWriter out = response.getWriter(); out.write(fileName); out.write("\n"); out.write(listOfCoverLetter.getCoverletterText()); String fName=fileName+".txt";*/ // response.setHeader("Content-Disposition","attachment; filename="+fName); // response.setHeader("Cache-Control", "no-cache"); /* byte[] buf = new byte[8192]; FileInputStream inStream = new FileInputStream(f); int sizeRead = 0; while ((sizeRead = inStream.read(buf, 0, buf.length)) > 0) { LOGGER.info("size:"+sizeRead); outStream.write(buf, 0, sizeRead); } inStream.close();*/ // outStream.close(); outs.flush(); outs.close(); out.close(); out.flush(); } } catch (Exception e) { LOGGER.info("This is Account Addresss edite option error"+e); } return new ModelAndView(); } and JSP file is <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" import="com.ibm.tool.command.Description"%> <%@page import="java.util.List, com.ibm.tool.command.Keywords;"%> <%@taglib prefix="form" uri="http://www.springframework.org/tags/form"%> <%@taglib prefix="spring" uri="http://www.springframework.org/tags"%> <% String contextPath = request.getContextPath(); %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>SearchResult Page</title> </head> <body> <% Description desc = (Description)request.getAttribute("commandBean"); %> <div style="border-style: solid; border-width: 3px; margin-top: 20px; margin-bottom: 20px; "> <div style="background-color: #303030"> <table width="100%"> <tr> <th align="left"><font size="5px" color="#D1D1D1">Search Result(s)</font></th> </tr> </table> </div> <div style="margin-bottom: 10px; margin-left: 5px; margin-top: 10px"> <form:form method="POST" commandName="commandBean" id="searchForm"> <table border="1" bordercolor="#424242" width="980" height="200"> <tr> <th align="left" bgcolor="#8F8F8F" colspan="1"><font size="4px" style="font-family: sans-serif">Problem Statement </font></th> <% if(desc.getProblemId()>=0 ){ %> <td colspan="3"><%=desc.getProblemText().trim() %></td> <%} %> </tr> <tr> <th align="left" bgcolor="#8F8F8F" colspan="1"><font size="4px" style="font-family: sans-serif">Solution</font></th> <% if(desc.getProblemId()>=0){ %> <td colspan="3"><pre><%=desc.getSolutionText().trim() %></pre></td> <%} %> </tr> <tr> <th align="left" bgcolor="#8F8F8F" colspan="1"><font size="4px" style="font-family: sans-serif">External Link</font></th> <% if(desc.getProblemId()>=0){ if(desc.getExternalLinkList().size() > 0){ %> <td colspan="3"> <% for(int k=0;k<desc.getExternalLinkList().size();k++){ %> <font size="2" style="font-family: sans-serif"><a href="http://<%=desc.getExternalLinkList().get(k).trim() %>"><%=desc.getExternalLinkList().get(k) %></a></font><br/> <%}%> </td><%} }%> </tr> <% if(desc.getProblemId()>=0){ if(desc.getExtension()!=null){ %> <tr> <th align="left" bgcolor="#8F8F8F" colspan="1"><font size="4px" style="font-family: sans-serif">Attachement</font></th> <td><a href="<%=contextPath%>/jobseekerDownloadCoverLetter.html?coverletterId=<%=desc.getProblemId() %>">Download File</a></td> </tr> <%}} %> <tr> <td colspan="4"><br/><a href="<%=contextPath%>/search.do?keepSearch=true">Back</a><br/></td> </tr> </table> </form:form> </div> </div> </body> </html>
very nice
Post your Comment
Scanning a word in a TEXT document...... Scanning a word in a TEXT document...... Hi Genius persons... I'm having many resumes in my FOLDER called HARISH in D:(colon) i want to scan... by searching the JAVA and .net words present in the files..if JAVA word is present means
Text field save as word file Text field save as word file Dear experts At run how to save set of text field contains text into single Word file. To save in our desktop computer. Solve my problem
Convert Text To Word Convert Text To Word In this example, You will learn how to convert text to word file. Here, we are going to discuss about the conversion of text to word file. Core
stop word removal from text file stop word removal from text file i need java source code for stop word removal from a text file
how to match the key word from a text file how to match the key word from a text file p>Hi all, I have the code to match the key word and from the text. I have input like this reader.txt... ((devstr = br.readLine()) != null) { String text = devstr; String text1
Java search word from text file Java search word from text file In this tutorial, you will learn how to search a word from text file and display data related to that word. Here, we have created a text file student.txt which consists of id, name and marks of few
How to Open Text or Word File on JButton Click in Java - Java Beginners How to Open Text or Word File on JButton Click in Java How to Open Text or Word File on JButton Click in Java
How to hide text in Word Document using Apache POI library How to hide text in Word Document using Apache POI library Is it possible to hide text in MS Word Document using Apache POI library? If yes, please.... Is there any way to hide some kind of text (could be in anywhere in the document
Java Word Processor this method do its work. To convert a word to Pig Latin: o if the word begins...Java Word Processor Problem: Design and implement a class called WordProcessor. This class is used to: ? hold a line of text that can
Java - search/find a word in a text file - Java Beginners Java - search/find a word in a text file Hello, I would like... to search them for a word. The word will be PASS or it can be FAIL. If PASS I...); System.out.print("Enter word to find: "); String word=input.next
Search word from text file using Java How to Search word from text file using Java In this section, we are going to search a word from the text file. For this, we have created a swing button... the user typed his/her name, it will check the name in the text file. To check
Open Text or Word Document on JButton Click in Java - Java Beginners Open Text or Word Document on JButton Click in Java How to open Word document or Text File on JButton Click in java Hi Friend, Try the following code: import java.io.*; import java.util.*; import javax.swing.
Count instances of each word Count instances of each word I am working on a Java Project that reads a text file from the command line and outputs an alphabetical listing... going wrong...could anyone help to put me in the right direction? From my text file
Example - Replace word Java: Example - Replace word Problem: Write a method to replaces all occurences a word in a string with another word. Assume the method signature... a new String. The word "replace" is probably misleading. Also, the method
java number to word - Java Beginners with the word, not the number 23? import java.util.Scanner; public class... { //----------------------------------------------------------------- // Pulls integers from a string to form a word... strLineOfText; String word = ""; int character
Collections Exercise 4 - Word Translator Java: Collections Exercise 4 - Word Translator 333. leftnewads2.shtml...: An online dictionary is needed. The user will enter a word and the program... of definitions, which give the different possible translations of a word. For example
java word counting - Java Beginners java word counting Hi I want a code in java that replaces a word with another when its occurred independently and ignores the case of the text... but this will change all the occurrence even if its part of another word the run
pdf to text pdf to text how to covert pdf file (which contain table and text) into word or excel file using itext api
java script to replace words starting and ending with tild(~) symbol in a text area with the word highlighted yellow. java script to replace words starting and ending with tild(~) symbol in a text area with the word highlighted yellow. Hi, I have an issue with highlighting text in a text area. I am designing a page to send email. currently
APACHE.POI -- Create word Document - Development process APACHE.POI -- Create word Document Hi, Could any one please post the code which creates the word document having different paragraphs and two... values init, aligning text in different formats. So please anyone please reply
create MS Word in Java - Java Beginners create MS Word in Java Hi, Could any one please post the code which creates the word document having different paragraphs and two tables. i have..., aligning text in different formats. So please anyone please reply the code
Java word extraction program. - Java Beginners Java word extraction program. Need to code a public class named WordExtractor that contains a main method. Prompt the user to enter a line of text and read it in using a Scanner object. The line of text should follow the prompt
How to remove paragraph from ms word How to remove paragraph from ms word Hi! I am using MS Word to edit my text but somehow i get paragraph sign on every line of my text. So, can any one please tell me how to remove paragraph from ms word? CTRL+SHIFT+8
Display the word that begins with vowel using Java Program Display the word that begins with vowel using Java Program In this section, we are going to separate the word that begins with vowels from the specified text. As the specified text consist of sentences that are terminated by either
Determining the Word Boundaries in a Unicode String for word-breaks using default locale. The setText() method set the text string...Determining the Word Boundaries in a Unicode String In this section, you will learn how to determine the word boundaries in a unicode string. Generally, we
Auto complete of word search using ajax with java Auto complete of word search using ajax with java I want to display the list of words when I type the first letter of the word in a text box. I am using jsp to design the form. I want ajax sample to achieve this feature. Its
JTextArea to Word Document : On clicking the button 'Save', the text will get saved in the word file. You...JTextArea to Word Document Jakarta POI has provided several classes that enable us to perform read, write operations with ms word file. Here we are going
Text box Checking Text box Checking I want to Write only the word A-Z in a text box What is the code
txt to wordBassey September 7, 2011 at 7:50 PM
I love your style of operation
CGIYbPtfuJXbmBDErkan January 19, 2013 at 3:33 PM
That's an intelligent answer to a difficult quietson xxx
.doc,hari February 16, 2012 at 4:20 PM
need conversion
txt to wordbabp February 17, 2012 at 5:50 PM
personal file,
problems opening the .doc in wordotos flournoy March 31, 2012 at 12:41 AM
The .doc created by TextToWord program does not open Word like the .csv file opens in Excel "Help".
text to wordotis flournoy March 31, 2012 at 12:45 AM
The .doc does no open like the .csv file.
Software DownloadAakash July 17, 2012 at 12:23 AM
Soft
imageamir August 1, 2012 at 4:48 PM
I want to have a text copy paste the image into Word, I think I should Chkarknm
File download by spring and hibernate and JSPKartik Chandra Mandal September 26, 2012 at 9:13 AM
//@ResponseBody @RequestMapping(value = "/jobseekerDownloadCoverLetter", method = RequestMethod.GET) public ModelAndView jobseekerDownloadCoverLetter(HttpServletRequest request, HttpSession session, ResCoverLetterForm resCoverLetterForm, BindingResult result,HttpServletResponse response) { //ModelAndView model = new ModelAndView(); //String file = null; try { String covId=request.getParameter("coverletterId"); int coverletterId=Integer.parseInt(covId); ResCoverLetterDTO listOfCoverLetter=coverLetterService.getCoverList(coverletterId); if (listOfCoverLetter!=null){ resCoverLetterForm.setActive(listOfCoverLetter.getActive()); resCoverLetterForm.setCoverletterId(listOfCoverLetter.getCoverletterId()); resCoverLetterForm.setCoverletterText(listOfCoverLetter.getCoverletterText()); resCoverLetterForm.setName(listOfCoverLetter.getName()); resCoverLetterForm.setUserId(listOfCoverLetter.getUserId()); String fileName=""; fileName=listOfCoverLetter.getName(); LOGGER.info("Filename:"+fileName); String fName=fileName; FileOutputStream fs = new FileOutputStream(fName); OutputStreamWriter out = new OutputStreamWriter(fs); out.write(listOfCoverLetter.getName()); out.write(listOfCoverLetter.getCoverletterText()); response.setContentType( "application/msword"); response.setHeader("Content-Disposition","attachment; filename="+fName); response.setHeader("Cache-Control", "no-cache"); byte[] bytesGot = listOfCoverLetter.getCoverletterText().getBytes(); ServletOutputStream outs = response.getOutputStream(); outs.write(bytesGot); /* String filePath = "C:\\test reference-material"; File f=new File(filePath, fileName); String fileType = fileName.substring(fileName.indexOf(".")+1,fileName.length()); LOGGER.info("Filetype:"+fileType+";"+f.length());*/ // if (fileType.trim().equalsIgnoreCase("txt")) { // response.setContentType( "text/plain" ); /* } else if (fileType.trim().equalsIgnoreCase("doc")) { response.setContentType( "application/msword" ); } else if (fileType.trim().equalsIgnoreCase("xls")) { response.setContentType( "application/vnd.ms-excel" ); } else if (fileType.trim().equalsIgnoreCase("pdf")) { response.setContentType( "application/pdf" ); LOGGER.info("content type set to pdf"); } else { response.setContentType( "application/octet-stream" ); } */ // response.setContentLength((int)f.length()); /* PrintWriter out = response.getWriter(); out.write(fileName); out.write("\n"); out.write(listOfCoverLetter.getCoverletterText()); String fName=fileName+".txt";*/ // response.setHeader("Content-Disposition","attachment; filename="+fName); // response.setHeader("Cache-Control", "no-cache"); /* byte[] buf = new byte[8192]; FileInputStream inStream = new FileInputStream(f); int sizeRead = 0; while ((sizeRead = inStream.read(buf, 0, buf.length)) > 0) { LOGGER.info("size:"+sizeRead); outStream.write(buf, 0, sizeRead); } inStream.close();*/ // outStream.close(); outs.flush(); outs.close(); out.close(); out.flush(); } } catch (Exception e) { LOGGER.info("This is Account Addresss edite option error"+e); } return new ModelAndView(); } and JSP file is <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" import="com.ibm.tool.command.Description"%> <%@page import="java.util.List, com.ibm.tool.command.Keywords;"%> <%@taglib prefix="form" uri="http://www.springframework.org/tags/form"%> <%@taglib prefix="spring" uri="http://www.springframework.org/tags"%> <% String contextPath = request.getContextPath(); %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>SearchResult Page</title> </head> <body> <% Description desc = (Description)request.getAttribute("commandBean"); %> <div style="border-style: solid; border-width: 3px; margin-top: 20px; margin-bottom: 20px; "> <div style="background-color: #303030"> <table width="100%"> <tr> <th align="left"><font size="5px" color="#D1D1D1">Search Result(s)</font></th> </tr> </table> </div> <div style="margin-bottom: 10px; margin-left: 5px; margin-top: 10px"> <form:form method="POST" commandName="commandBean" id="searchForm"> <table border="1" bordercolor="#424242" width="980" height="200"> <tr> <th align="left" bgcolor="#8F8F8F" colspan="1"><font size="4px" style="font-family: sans-serif">Problem Statement </font></th> <% if(desc.getProblemId()>=0 ){ %> <td colspan="3"><%=desc.getProblemText().trim() %></td> <%} %> </tr> <tr> <th align="left" bgcolor="#8F8F8F" colspan="1"><font size="4px" style="font-family: sans-serif">Solution</font></th> <% if(desc.getProblemId()>=0){ %> <td colspan="3"><pre><%=desc.getSolutionText().trim() %></pre></td> <%} %> </tr> <tr> <th align="left" bgcolor="#8F8F8F" colspan="1"><font size="4px" style="font-family: sans-serif">External Link</font></th> <% if(desc.getProblemId()>=0){ if(desc.getExternalLinkList().size() > 0){ %> <td colspan="3"> <% for(int k=0;k<desc.getExternalLinkList().size();k++){ %> <font size="2" style="font-family: sans-serif"><a href="http://<%=desc.getExternalLinkList().get(k).trim() %>"><%=desc.getExternalLinkList().get(k) %></a></font><br/> <%}%> </td><%} }%> </tr> <% if(desc.getProblemId()>=0){ if(desc.getExtension()!=null){ %> <tr> <th align="left" bgcolor="#8F8F8F" colspan="1"><font size="4px" style="font-family: sans-serif">Attachement</font></th> <td><a href="<%=contextPath%>/jobseekerDownloadCoverLetter.html?coverletterId=<%=desc.getProblemId() %>">Download File</a></td> </tr> <%}} %> <tr> <td colspan="4"><br/><a href="<%=contextPath%>/search.do?keepSearch=true">Back</a><br/></td> </tr> </table> </form:form> </div> </div> </body> </html>
text to wordreza November 18, 2012 at 2:02 PM
very nice
Post your Comment