Regarding utility for converting plb to text file

sir,
i would like to know if there is any utility to
convert .plb file(binary file) to text file.
urgent reply anticipated
Thanks in advance
Murthy

I just wrote one like that a couple of days ago.<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text"/>
<xsl:template match="personInfo">
  <xsl:value-of select="name"/>
  <xsl:text>,</xsl:text>
  <xsl:value-of select="address"/>
  <xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>

Similar Messages

  • Convert XML to text file and sending the same via Mail receiver adapter

    Dear All,
    I have a requirement like....
    I am getting a XML file as a result of mapping and it needs to be converted to a TEXT file and
    the converted file needs to be sent to a mail address in text format.
    Any body has idea how to achieve this?
    Thanks in advance for your help.
    Regards
    Hari

    >
    HP CReddy wrote:
    > Dear All,
    >
    > I have a requirement like....
    >
    > I am getting a XML file as a result of mapping and it needs to be converted to a TEXT file and
    > the converted file needs to be sent to a mail address in text format.
    >
    > Any body has idea how to achieve this?
    >
    > Thanks in advance for your help.
    >
    > Regards
    > Hari
    use the StructXML2Plain or XML2Plain from the standard MessageTransformBean
    Add the module to you Mail adapter before the mail adapters standard module itself
    Ref: http://help.sap.com/saphelp_nw04/helpdata/en/24/4cad3baabd4737bab64d0201bc0c6c/content.htm

  • I have been searching for best app for converting handwriting to text. Write pad seems great does the app allow direct entry into a template?

    I have been searching for best app for converting handwriting to text on my ipad. Writepad  by Phat seems great does the app allow direct entry into a template?

    Writepad only works within the app itself - it does not allow you to write in another program. While it does allow you to save a document as a text or pdf file, it won't (I believe) let you open a file created outside of Writepad and work on it (except maybe text files - would have to investigate and see).

  • Can anyone post me a solution for converting gif containing text to a .txt

    Can anyone post me a solution for converting gif containing text to a .txt file using Java

    wow!!!
    not gonna put a full solution (since its huge!!!)
    but heres how you would do it
    open the gif in a bufferd image, then do some image recognition on it
    easy (hehe) case is if the gif only contains text (black on white of a standard font)
    then i would scan down the image until i find a raster line that isnt all white (top of a text line), then find the next raster line that is all white (bottom of text line.
    half(ish) way between these lines scan from the left until you find a black pixel (start <maybe> of next character) (be careful you dont aim for the gap in "i"
    from that point (x, y) test a set of pixels (x+n1, y+m1) to (x+nt, x+mt) where t should only have to be ~8 or 10 such that for each character in the font these test points return a unique combination, you then know what character is next, add it to a string and repeat along the line, then down the page
    tahh dahh there ya go
    you can write a program to learn the required test points by giving it a line of the full character set
    good piggin luck is what i say :-)

  • Call Pipeline in orchestration for converting XML to flat file

    Hi ,
    Can we call Pipeline in orchestration for converting XML to flat file ?
    Or we have some another option for this task ?
    Prakash

    Hi,
    You can refer this article from Abdul Rafay on how to work with Flat files and how to call receive and send pipelines within your orchestration. He
    has provided detailed step by step explanation of the process.
    Calling Send and Receive Pipelines
    from the orchestration expression shapes
    The code shared by Abdul at http://abdulrafaysbiztalk.wordpress.com/files/2009/06/processingflatfiles.doc (Change the extention to rar) and try it.
    One common mistake I have seen people doing will working with Flat File Assembler is that they miss to set the Document schema property in the Properties
    window to the flat file schema.
    If the Document schema property is not specified, runtime schema discovery will be attempted. During schema discovery, BizTalk Server attempts
    to determine the correct flat file schema to assemble the message with, based on the namespace and root node of the message, its added performance hit.
    Rachit

  • Generate dummy XML for an empty input text file

    Hi All,
    i know when XI gets an empty input text file, it does not generate a send message for it in sender communication channel.
    in my scenario, if i get a file with data, i have to generate an XML message for it using file content conversion - this i have done...........
    but if i get an empty text file, then i have to generate a dummy XML send message for it for my BPM.......
    <b>Has anybody generated a dummy XML message for an empty input file........please respond only if you have practically generated a XML message in SXMB_MONI for an empty input text file.</b>
    Thanks,
    Rajeev Gupta

    Hi All,
    i made a J2EE adapter module to generate dummy xml for empty file.....but when i give a file with data in it, then my adapter module is called..... but when i give an empty file, then my adapter module is not called.........
    so if somebody has practically generated a dummy XML for an empty file by any method, please tell.
    Thanks,
    Rajeev Gupta

  • Read Unicode text file convert to ANSI text file

    I am new to Java. I am trying to read from, ReadUnicodeEncodedPlainTextDocument.txt, a plain text file encoded
    in Unicode, then select four particular lines, and then write those plain text lines to, WriteANSIencodedPlainTextSelectedFields.txt,
    another file encoded in ANSI.
    Using my code ConvertEncodedText.java:
    import java.io.*;
    import java.util.Scanner;
    public class ConvertEncodedText
         public static void main(String[] args) throws Exception
              File f = new File("ReadUnicodeEncodedPlainTextDocument.txt");
              Scanner scan = new Scanner(f);
              String peek1, peek2, peek3, peek4;
              boolean pk1 = false, pk2 = false, pk3 = false;
              int count = 0;
              while(scan.hasNext())     // begin search
                   peek1  = scan.nextLine();
                   if (peek1.startsWith("From"))
                        pk1 = true;
                        peek2  = scan.nextLine();
                        if(pk1 && peek2.startsWith("Date"))
                             pk2 =true;
                             peek3  = scan.nextLine();
                             if(pk1 && pk2 && peek3.startsWith("To"))
                                  pk3 = true;
                                  peek4 = scan.nextLine();
                                  if(pk1 && pk2 && pk3 && peek4.startsWith("Subject"))
                                       System.out.println("\n" + peek1 + "\n" + peek2 + "\n" + peek3 + "\n" + peek4);
                                       count++;
                                       pk1 = false;
                                       pk2 = false;
                                       pk3 = false;                                   
                                  }//if pk1 && pk2 && pk3 && peek4.startsWith("Subject")), print, begin new search
                                  else
                                       pk1 = false;
                                       pk2 = false;
                                       pk3 = false;                                   
                                  }//else begin  new search                              
                             }//if(pk1 && pk2 && peek3.startsWith("To"))
                             else
                                  pk1 = false;
                                  pk2 = false;
                                  pk3 = false;
                             }//else begin new search
                        }//if(pk1 && peek2.startsWith("Date"))
                        else
                             pk1 = false;
                             pk2 = false;
                             pk3 = false;
                        }//else begin new search
                   }//if (peek1.startsWith("From"))
              }//while hasNext
              System.out.println("\ncount = " + count);
    }As shown below, I would like to write to the following text file encoded in ANSI, WriteANSIencodedPlainTextSelectedFields.txt:
    From: "Mark E Smith" <[email protected]>
    Date: April 9, 2007 11:28:19 AM PST
    To: <[email protected]>
    Subject: FW: RFI Research Topic Up-date
    From: "Mark E Smith" <[email protected]>
    Date: May 26, 2007 11:14:12 AM PST
    To: <[email protected]>
    Subject: Batting Practice Sportsphere
    From: "Mark E Smith" <[email protected]>
    Date: May 30, 2007 11:53:45 PM PST
    To: <[email protected]>
    Subject: 3p meeting
    From: "Mark E Smith" <[email protected]>
    Date: June 20, 2007 4:09:10 PM PST
    To: <[email protected]>
    Subject: Question
    count = 4
    In order to produce the above text file,
    I would like to read the following text file encoded in Unicode, ReadUnicodeEncodedPlainTextDocument.txt:
    From: "Mark E Smith" <[email protected]>
    Date: April 9, 2007 11:28:19 AM PST
    To: <[email protected]>
    Subject: FW: RFI Research Topic Up-date
    Hi, Dr. Ulrich.? Are there any authors and titles of JME that you could recommend for my reading??
    Thanks.? Mark
    From: Joe Greene [mailto:[email protected]]
    Sent: Sat 4/7/2007 4:10 PM
    To: Mark E Smith
    Subject: RE: RFI Research Topic Up-date
    Hi Mark,
    Thanks for the update. I have met Dr. Ulrich on several occasions ? he is a great guy!
    Dr. Hammer and I also have the same advisor from graduate school. He did his Masters with my PhD advisor at Poly-Tech. We have also met many times in the past. I think you will be in good hands down there.
    It seems clear that you need to start learning JME and can perhaps forget about Windows Mobile. JME represents a smaller footprint for Java that contains support for various APIs for mobile functionality. I do not own any JME books, but a search on Amazon.com turned up what looks like several good ones.
    Best wishes
    Joe
    ----------------------------------------------------&#8232;Joe Greene, Ph.D.&#8232;DCSIT&#8232;it.sdu.com&#8232;[email protected]&#8232;http://www.greene.org
    From: Mark E Smith [mailto:[email protected]] &#8232;Sent: Saturday, April 07, 2007 9:30 AM&#8232;To: [email protected]&#8232;Subject: RFI Research Topic Up-date
    Welcome to the conversation, Dr.Greene.? This is where we are so far.? I would appreciate your thoughts.
    Thanks.? Mark
    From: "Mark E Smith" <[email protected]>
    Date: May 26, 2007 11:14:12 AM PST
    To: <>
    Subject: Batting Practice Sportsphere
    Saturday, May 26, 2007
    Hi, Dr. Ulrich.? This read-sensitive run-recognition pitching distribution is perhaps a commercial problem in a less sophisticated framework.? Could we build a simple commercial application and then customize the solution for the Ballpark functions and framework?? Thanks.? Mark
    From: "Mark E Smith" <[email protected]>
    Date: May 30, 2007 11:53:45 PM PST
    To: <[email protected]>
    Subject: 3p meeting
    Hi, Dr. Ulrich.? Attached are a few notes from my research of the project docs that you sent me.? I am looking forward to our 3p meeting.??Thanks.? Mark?
    From: "Mark E Smith" <[email protected]>
    Date: June 20, 2007 4:09:10 PM PST
    To: <[email protected]>
    Subject: Question
    Hi, Dr. Ulrich.? Pine-tar.? What do you think?? Would you please show me how to pitch sliders and splitters into this so I can study the features in detail?? Thanks.? Mark
    P.S.
    As you can see, my code reads the particular sequence of 4 selected fields, From, Date, To, and Subject,
    out of an email that contains that specific sequence of 4 fields then I would like to place them in a text file
    called WriteANSIencodedPlainTextSelectedFields.txt, and then print the number of emails in the document.
    Instead of the desired output I would like to write to the file WriteANSIencodedPlainTextSelectedFields.txt; I am only getting this:
    Count = 0
    What is my problem???
    Thanks,
    Mike

    What is my problem???Obviously one of your conditions not being true...
    What does your question have to do with the thread's subject, btw?

  • Convert timestamp from text file (hh:mm:ss) into seconds

    How can I import a column of time stamps from a text file of the form hh:mm:ss and convert it into seconds using LabView? For example, 13:30:30 into 48630.
    Also, using the "Read from Spreadsheet File VI" I can't seem to get the entire time stamp imported correctly. Only the value before the colon is read. For example, if the timestamp reads 13:30:30, only 13 is inputed into the array in LabView.
    FYI I'm using LabView 7. Thanks!

    Here's a LV 7 example. Just a Scan From String, a couple of Multiply functions and add the results. As far as your Read From Spreadsheet issue, by default, the function creates an array of SGLs. 13:30:30 is text and the functions needs to be modified to return an array of strings. There are instructions on the diagram on how to do this. When you've made the changes, save it as a new name and in a new location.
    Attachments:
    time_to_seconds.vi ‏17 KB

  • Error while running bulk load utility for account data with CSV file

    Hi All,
    I'm trying to run the bulk load utility for account data using CSV but i'm getting following error...
    ERROR ==> The number of CSV files provided as input does not match with the number of account tables.
    Thanks in advance........

    Please check your child table.
    http://docs.oracle.com/cd/E28389_01/doc.1111/e14309/bulkload.htm#CHDCGGDA
    -kuldeep

  • Help:i need a code for making a new text file then adding 1 blank line

    i have done makng load, edit and save for a command line text editor. now my problem is, i dont know how to make a new blank text file and store it on the current directory. and i need to have that new text have 1 blank line with full of white space. help please.

    PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter("NewBlankTextFile.txt")));
    pw.println("                                                                                                                                         ");
    pw.close();

  • Ascii character 129 for newline in the text file

    Hi there,
    I have java program that makes JDBC connection and reads through a table, write a column in text file, after each column puts delimiter "|"and after each row prints in the next line.
    This is the code below.
    public void queryRecords() {
             Statement stmt           = null;
            ResultSet rset           = null;
            try {
                  stmt = con.createStatement();
                  int numRows = 0;
                File file           = new File("/tmp/temp.txt");
                FileWriter writer   = new FileWriter(file, false);
                BufferedWriter pw      = new BufferedWriter(writer);
                rset = stmt.executeQuery("SELECT * FROM mytable");
                ResultSetMetaData rsmd = rset.getMetaData();
                int colCount = rsmd.getColumnCount();
                while (rset.next()) {
                    for (int i = 1;i <= colCount; i++) {
                        String st = rsmd.getColumnTypeName(i);
                        if (st.equals("DATE")) {
                            Date d1 = rset.getTimestamp(i);
                            pw.write(d1 + "|");
                        } else {
                            Object o1 = rset.getObject(i);
                            if (o1 != null) {
                                pw.write(o1 + DELIM);
                            } else {
                                pw.write(DELIM);
                    pw.newLine();
                pw.close();
                 rset.close();
                 stmt.close();When i open this Temp.txt file in notepad i see ascii character 129 (rectangular box) instead of the new line. But when i print the file i have each row in a separate line.
    Why could this be happening??
    Please help...

    hi,
    Try PrintWriter instead :
    File file = new File("D:/testing.txt");
            //FileWriter writer   = new FileWriter(file, false);
            //BufferedWriter pw      = new BufferedWriter(writer);
            PrintWriter pw = new PrintWriter(file);
            pw.print("aaa");
            pw.print("|");
            pw.print("aaa");
         public static void main(String[] args) throws Exception {
              File file = new File("/test/test.txt");
            //FileWriter writer   = new FileWriter(file, false);
            //BufferedWriter pw      = new BufferedWriter(writer);
            PrintWriter pw = new PrintWriter(file);
            pw.print("aaa");
            pw.print("|");
            pw.print("aaa");
            pw.print("|");
            pw.print("aaa");
            pw.println();
            pw.print("aaa");
            pw.print("|");
            pw.print("aaa");
            pw.print("|");
            pw.print("aaa");
            pw.close();
         }hth

  • Font Used For Quick Look Plain Text Files?

    Hi,
    Does anyone know what font Leopard uses when you Quick Look a plain text file? It's one that isn't anti-aliased. I can't seem to find it anywhere in my Font Book.

    You could override that with code in userContent.css, either for all websites or for specific websites.
    *http://kb.mozillazine.org/userContent.css
    <pre><nowiki> pre{font-family:monospace!important}
    @-moz-document domain(svn.uni-konstanz.de){
    pre{font-family:monospace!important}
    }</nowiki></pre>

  • Server Side Includes for Apache and parsing text files

    I have an old website I used to do zipped up and I decided to set it up on my personal webserver in OS X . I got apache configured to allow server side includes (edited the httpd.conf to all them:
    <Directory />
    Options FollowSymLinks Indexes MultiViews Includes
    AllowOverride None
    </Directory>
    But I can't get the pages to come up. See I have this .shtml page which loads fine and a part of it has this line:
    <!--#include file="news/news.txt" -->
    But it won't parse that txt file and show the html that its formatted in.
    Anyone have any ideas on how to get it to parse that txt file? Even if I load just that txt file it shows raw code not it formatted. Please help.

    Ignore that first reply. I thought I was dealing with server.
    As usual, I fogot to make sure that Includes was in the Options directive for the DOCUMENT_ROOT or VirtualHost. After 10 years, you'd think I'd remember that. I just configged one of my macs to do SSI. Here's the 3 lines that I changed:
    Line 399 (the DOCUMENT_ROOT definition): Options Indexes FollowSymLinks MultiViews Includes
    Line 887 (To use server parsed HTML): AddType text/html .shtml
    Line 888: AddHandler server-parsed .shtml
    apachectl restart
    and off it went!
    Roger

  • Best option for converting audio to text, Best option for converting audio to text

    Trying to figure out best way to convert audio (mp3 or mp4) files to text.  Right now I'm transcribing by hand interviews but have hundreds of hours and this is getting old
    I found MacSpeech Scribe.  Is this a good option? How accurate is it?  Is there an open source option or another way to do this that I haven't found yet?
    Thank you!

    Dragon:
    http://shop.nuance.com/store/nuanceus/Custom/pbpage.resp-dragon-home?utm_medium= ps&utm_source=Google&utm_campaign=Dragon&utm_term=dragon&cvokeywordid=618949003
    Ciao.

  • What recommendations do you have for converting AVCHD Sony .mts files to apple .m4v movies?

    I have a 3 yo Sony HD camcorder that records HD movies in AVCHD (.mts) format. I can view, edit and combine these movies on my Windows 7 PC w the Sony PMB (Picture Motion Browser). PMB can convert any clip to make a SD or HD Blu Ray disc. However for viewing on other computers, it will only convert my .mts movies to a .mov or .wmv format.
    I would like to convert these .mts files to apple mpeg-4  ( .m4v)  files, for ease of viewing on apple AND/OR  windows laptops/desktops and to allow my friends/family the ability to edit or combine these  movie clips on their iMac w iMovie.
    Do you have any "pay" or shareware or freeware products that you recommend? I don't want a super complex or super expensive program, rather something that is relatively simple and easy to use and that converts it to .m4v within a reasonable amount of time.
    Recommendations?

    Its confusing but iMovie '11 (the version that came with iLife 2011) is iMovie version 9. 
    I think .m2ts files will work the same as .mts files.  The program in the link is free for what you want to do so you could thy this out.  I have never used it myself so I can't vouch for it.  I searched under ".mts to .m4v converter" and it came up with this.  You can probably find other options if you Google around. 
    As I indicated iMovie '11 won't import 'bare' .m2ts files, only iMovie 10 (the Mavericks version) can do that but it should accept .m4v.  I don't remember wheter .m4v is an output option but .mov certainly is.
    I had assumed that you wanted to do more detailed editing in iMove but if you only want to trim it then indeed you don't need to use iMovie at all. 
    .m4v is not the only format which is cross-platform.  I think .mov is OK on Windows if you have Quicktime installed (though I don't use Windows at all).
    I hope this helps,
    Geoff.

Maybe you are looking for

  • Strange happenings

    Hi, I am currently in the middle of making a new site for a cycling club I am a member of (http://www.cqoz.com/16/) and I keep testing it but I am getting many varying results on different browsers. Even Safari is not good, as it gets some sttrange q

  • Translating Visual Basic Events into Java Events

    I'm in the process of porting a Visual Basic application to Java. Now, most of it is pretty straight forward, since good OO practice is evident in the original VB source. With a good dose of refactoring along the way the Java version is looking prett

  • Error shared library

    Hi all, i'm new in java i want to use Crystal Report as shared lib in OAS, but i got this error message Caused by: org.apache.commons.logging.LogConfigurationException: Invalid class loader hierarchy. You have more than one version of 'org.apache.com

  • How do I handle that my delivered mac book pro was broken (touch pad) although packaging was fine?

    Found that my new, finally arrived computer, is broken (touch pad completely crashed). The packaging is fine. It must have been broken when being put in the box which makes me even more frustrated. Then, when calling support, no help is available unt

  • HT1665 Why i can not pair my ios4 with my dell pc via bluetooth?

    Why I can not pair my ios4 with my dell pc via Bluetooth ?