Getting an HTML file to device

I am very new to Blackberry development and would appreciate some direction, either in answers or documentation to read.  Here is my dilemma. 
In Visual Studio 2008, I have created an HTML page using JavaScript that does stuff like dynamic table builds.  I have installed the blackberry development addin.
I want to get this HTML file onto my blackberry device(8730), preferably in the applications folder.  This is a for personal use so I do not want to load it onto my corporate BES server. 
I have the application loader software, but it looks to install applications not single web pages.  I have attached my blackberry device via a USB port but do not see the device in the windows explorer list of drives.  I have emailed it to myself and could not find a way to save it locally.
I have been unsuccessful in the searching I have done to date.    Any help or direction would be greatly appreciated.

what you want to do is not install an HTML page.
you want to put the HTML page either on the web, or somewhere on your device.
can you use a memory card ? ---> http://supportforums.blackberry.com/rim/board/mess​age?board.id=BlackBerryDesktopSoftware&thread.id=3​...
HOWTO : use your blackberry as a USB device
The search box on top-right of this page is your true friend, and the public Knowledge Base too:

Similar Messages

  • Getting an html file on to the body of an email on macmail

    I have been using my old computer, which has OSX10.4.11 and this has been working fine. with the new imac,10.5.5 it does not work at all. very frustrating.
    1. save the file to desktop, which is a photo which contains html
    2. open the file which opens in a browser window. the address in the browser window is this
    file:///Users/assistant/Desktop/kilby_ecard.html
    3. take mouse to image, drag image on to body of email, the image is shown in the email, then I send email
    4. when recipient gets it, it looks the same, and clicking it takes recipient to proper URL
    as I say above, this is fine with my old mac. with the new one, a file when safari is open "acts" as if it is working but only the jpeg gets on the emaill and not the html code. with firefox open, the image refuses to be put into the email body. it goes as far as creating a green plus sign, but then jumps back to the browser window when you let go of the mouse.
    please help. thanks.

    I do not want to build a newsletter but it is the same idea. the html file is already built and I want to drop it into emails to specific people. and it not necessary to use mail stationary in 10.4.11. is a simple process. what is wrong with this version of macmail

  • Get all html files from a url

    Hi I am trying to do a website copyer and i don't know how get all the html from a url.
    By example:
    I want get all files html from http://forum.java.com/
    aAnybody has an idea of how to do this?
    Thanks

    Not easy. First, you'll have to look at networking programming - how to make URL connections etc.. Then, you'll have to look at HTML parsers - how to extract links, images, etc. from an HTML page. Also, you'll have to know how to do file I/O in order to save the HTML files obtained.
    I don't know of any Java-based web site copier open source projects that you can refer to, but you can take a look at the source code for projects such as HttpUnit and HtmlUnit. They contain code that'll help you with your web site copier.
    Good luck!

  • How to get real html files with forms 6i

    I know this may be a repeat question, but this is our context :
    We are deploying a heavy Forms6i app to the web. Everything is ok. We're able to run the forms in the MS Internet Explorer 5 native java window, without having to download first Jinitiator (8Mo) on the client.
    BUT it takes to much time to initiate the session, this is way to heavy.
    Do you know when Forms6i will be able to generate real html files on the fly or any way to have a quicker access to Forms through the web.
    Thank you very much

    Thanks.
    1/ Actually most of the customers will use our app through normal 56k modems. Their first connection must avoid to download Jinitiator which is 8Mo, so we don't want people to use Jinitiator (opening the session is even longer with Jinitiator than IE5).
    2/ Moreover, the applet window has a grey title line with the word "window" and the name form : this is not internet at all ;-)
    3/ A normal connection through a firewall doesn't work with the famous port 9000.
    help please.
    Thank you
    null

  • How to get generated HTML file to display in new window from FileDownloadActionListener?

    Hi,
    I am using Jdeveloper version 11.1.1.5.
    I have a use case where the user can produce a report upon the click of a command button. They can generate 3 types of reports, HTML, PDF or Excel depending on which option they select in the radio buttons preceding the 'generate report' command button.
    The files are created in the background (XML file created based on View Objects which is then transformed using the relevant API for the report type and then produces a file which is held in servers temp directory) and is served out through a FileDownloadActionListener component programmatically, which itself is surrounded by a Command Link with visibility property set to 'false' (as per this blog:http://www.jobinesh.com/2010/01/customizing-execution-of-to-validate.html).
    Everything works fine in that the reports generate correctly and after clicking on the 'generate report' button the browser's 'Open/Save' dialog box appears asking the user what they would like to do with the file. I am using Internet Explorer as that is what most of the client users will be using.
    The issue I'm having is as follows. For PDF and Excel types when the user clicks on 'Open' the file opens in separate Adobe Reader or MS Excel application windows respectively, which is as expected and required. However, the HTML document opens within the same browser window within which the application is running and from where the 'generate report' button was clicked. The issues this presents is that if the user closes the browser window displaying the report then they will need to open a new window to re-establish connection to the application. If they click the browser 'back' button then it takes them back to the original page but not in exactly the same state as it was before the report was launched i.e. there are some components missing and the page doesn't display correctly.
    Is there another way for me to achieve this or is it even possible? I tried setting the 'useWindow' property of the invisible command link surrounding the FileDownloadActionListener to 'true' which didn't work. I tried to surround it with a Go Link instead of a command link but that gave me NullPointerException's, I think because you can only use a component which has an 'Action' property?
    I appreciate your assistance as always.

    Hi,
      I'm not sure if this solution is appropriate to your situation, but I had the same problem with trying to redirect from a commandLink to a new window.  In the method that is called by the links action I used the following:
    // Open the url in a separate browser window
    ExtendedRenderKitService erks =
      Service.getRenderKitService(fctx, ExtendedRenderKitService.class);
    StringBuilder script = new StringBuilder();
    script.append("window.open('" + url + "', '', '');");
    erks.addScript(FacesContext.getCurrentInstance(), script.toString());

  • How do I get a jar file to run directly?

    I got it to work, as in the jar file runs fine from the command thing. However, I tried getting an html file to run it, but it just wasn't working.
    This may be because I only had it incorporate the applet, and there ARE other classes, but I really don't know any html and I wouldn't know how to include those. Also, I don't know if it's an issue, but I don't think it's very plausible to have the applet both display things (my program has a GUI of sorts) and have the main method at the same time, given my program structure.
    What can I do? Are there other ways besides creating an html document to run an applet? Is there a way I could include my other classes if that's the problem? I'd really like for it to be able to run in an internet browser- otherwise, my program probably won't reach as many people.

    I got it to work, as in the jar file runs fine from
    the command thing. However, I tried getting an html
    file to run it, but it just wasn't working. To run a class with a main method you just use JRE. To run an applet you should use a browser with a Java plugin or the AppletViewer from JDK. For more info see this: http://java.sun.com/applets/jdk/1.4/index.html
    This may be because I only had it incorporate the
    applet, and there ARE other classes, but I really
    don't know any html and I wouldn't know how to
    include those. See the above link for some samples.
    Also, I don't know if it's an issue,
    but I don't think it's very plausible to have the
    applet both display things (my program has a GUI of
    sorts) and have the main method at the same time,
    given my program structure.If your applet has a main method, the browser will just silently ignore it, so you don't have to worry.
    What can I do? Are there other ways besides creating
    an html document to run an applet? Is there a way I
    could include my other classes if that's the problem?
    I'd really like for it to be able to run in an
    internet browser- otherwise, my program probably
    won't reach as many people.To run a program, not an applet, you can also use webstart: http://java.sun.com/products/javawebstart.

  • How can I get the HTML codes in illustrator?

    Hi, I am a graphic designer, and I am getting into the web world, I wanna know how can I get the HTML codes to upload a web design made using Illustrator,...¡?Does any one know?Please let me know...

    everyone here is right, dreamweaver is better and you will need to understand html for this to work. HOWEVER, you can make a functional website using just illustrator and notepad (or text edit if you're on a mac).
    Design your site in illy, slice it up with the slice tool. http://s23.postimg.org/mv311kpp7/test_illy.jpg 
    Save for web and select html and images, you'll get an html file and an images folder. Open the HTML file in your text editing program and it will look like this: http://s10.postimg.org/f32nf6r2h/html_stuff.jpg   you'll have to know HTML codes but you can find tutorials online for most stuff, you'll just have to figure it out. In my fake site, i linked a button to google so i had to add <a href> tags to the code. http://s22.postimg.org/5avpadhch/a_href.jpg  save the html file and open it in your web browser, hopefully not IE. You can't tell in the picture but the middle button actually does link to google. http://s21.postimg.org/qd77slqmf/firefox.jpg

  • Reading html files with File class

    The methods of the class File does not identify html files. for example the method list() does not return names of html files in a givven directory? does anyone know what is the way to get the html files names and use them for file proccesing?
    Thanks

    The Temporary Internet Files folder is a special system folder on Windows. It does not really contain any of the files you can see when you go there through Internet Explorer or Windows Explorer.
    On Win2K, using IE6.0, the real files seem to be in a directory called C:\Documents and Settings\<hhor>\Local Settings\Temporary Internet Files\Content.IE5\<some apparently random name>, where <hhor> is the name of my profile, and <some apparently random name> is, well... some apparently random name :)

  • Parsing HTML files

    Hello,
    I have a question about parsing HTML files. Usually when I get an HTML file and I need to find all the text in it I do this. This stuff just collects all of the hyperlinks and ignores all the html tags just keeping the actual text. It's fine for smaller files but occasionally I'll hit a large online text file and it will work but its way to slow for large files. I don't need to do all of this HTML tag stripping however for text files. Is there a way to still grab all the text without doing any tag searching to make it faster?
    thanks,
    private void find() throws IOException
            //Really slow for large text files.  Need a way to just use a regular scanner on an internet text file
            new ParserDelegator().parse(new InputStreamReader(myBase.openStream()),
                    new ParserListener(),
                    true); 
         * Inner class for processing all "<a href.."> tags when reading a base URL.
        private class ParserListener extends HTMLEditorKit.ParserCallback
            final String IGNORED_LINKS = "^(http|mailto|\\W).*";
            public void handleStartTag (HTML.Tag t, MutableAttributeSet a, int pos)
                if (t == HTML.Tag.A)
                    String href = (String)(a.getAttribute(HTML.Attribute.HREF));
                    //System.out.println(href);
                    //System.out.println(href.matches(IGNORED_LINKS) + "\t" + href);
                    if (! (href == null || href.matches(IGNORED_LINKS)) && !myURLs.contains(href))
                        myURLs.add(href);
                //TODO fix
                if (t == HTML.Tag.TITLE)
                    String title = (String) (a.getAttribute(HTML.Attribute.TITLE));
                    if (!(title == null))
                        myTitle = title;
                    else myTitle = "No title was found";
            public void handleText (char[] data, int pos)
                myText.append(" ");
                myText.append(data);
        }

    JFactor2004 wrote:
    My question is. If I know an html file is actually just a txt fileThis isn't a question. HTML files are text by definition.
    is it possible to look through it (maybe use something similar to a regular scanner) without doing anything with html.That depends on what you mean by "doing something with HTML". You can certainly read it one line at a time.

  • How do I prevent CS4 from creating HTML files on export of an image?

    Everytime I export an image i am getting a html file created too.  It is annoying having to delete them manually every time, and there seems to be no option to turn this feature off.
    Generally I dislike CS4 compared to Macromedia Fireworks v8. 

    You need to select "images only" in the dialogue box when you choose Export
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • Getting links and its names from a html file

    Hi everyone
    My problem about the a getting links with name from a html file. For example
    &#304;n a web page in this site ?SUN? when use click SUN the browser open http://java.sun.com
    &#304; want both of them, so the links and name. I can succeeded the get link but i don t know how to get the link name.
    For example :
    <B>setRightComponent(Component)</B>
    &#304;n this code segment i want to get B tag. But how i don t know. To get A tag i used this code
    List result = new ArrayList();
    try {
    // Create a reader on the HTML content
    URL url = new URI(uriStr).toURL();
    URLConnection conn = url.openConnection();
    Reader rd = new InputStreamReader(conn.getInputStream());
    // Parse the HTML
    EditorKit kit = new HTMLEditorKit();
    HTMLDocument doc = (HTMLDocument)kit.createDefaultDocument();
    kit.read(rd, doc, 0);
    // Find all the A elements in the HTML document
    HTMLDocument.Iterator it = doc.getIterator(HTML.Tag.A);
    while (it.isValid()) {
    SimpleAttributeSet s = (SimpleAttributeSet)it.getAttributes();
    String link = (String)s.getAttribute(HTML.Attribute.HREF);
    if (link != null) {
    result.add(link);
    it.next();
    &#304; can use B tag but i don t know hot to get its value because it has no prefix such as HREF....
    i am sorry if i use a bad explanation style or incorrect word.

    import java.io.*;
    import java.net.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    class GetLinks
        public static void main(String[] args)
            throws Exception
            // Create a reader on the HTML content
            Reader reader = getReader( args[0] );
            // Parse the HTML
            EditorKit kit = new HTMLEditorKit();
            HTMLDocument doc = (HTMLDocument)kit.createDefaultDocument();
            doc.putProperty("IgnoreCharsetDirective", Boolean.TRUE);
            kit.read(reader, doc, 0);
            // Find all the A elements in the HTML document
            HTMLDocument.Iterator it = doc.getIterator(HTML.Tag.A);
            while (it.isValid())
                SimpleAttributeSet s = (SimpleAttributeSet)it.getAttributes();
                String href = (String)s.getAttribute(HTML.Attribute.HREF);
                int start = it.getStartOffset();
                int end = it.getEndOffset();
                String text = doc.getText(start, end - start);
                System.out.println( href + " : " + text );
                it.next();
        // If 'uri' begins with "http:" treat as a URL,
        // otherwise, treat as a local file.
        static Reader getReader(String uri)
            throws IOException
            // Retrieve from Internet.
            if (uri.startsWith("http:"))
                URLConnection conn = new URL(uri).openConnection();
                return new InputStreamReader(conn.getInputStream());
            // Retrieve from file.
            else
                return new FileReader(uri);
    }

  • How can i get all links from html file ?

    I tried some code:
    List<string> metas = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    HtmlWeb web = new HtmlWeb();
    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.Load(filename, Encoding.UTF8);
    var metaTags = doc.DocumentNode.SelectNodes("//meta");
    if (metaTags != null)
    foreach (var tag in metaTags)
    if (tag.Attributes["name"] != null && tag.Attributes["content"] != null)
    text = tag.Attributes["name"].Value;
    mys = tag.Attributes["content"].Value;
    var linksOnPage = from lnks in doc.DocumentNode.Descendants()
    where lnks.Name == "a" &&
    lnks.Attributes["href"] != null &&
    lnks.InnerText.Trim().Length > 0
    select new
    Url = lnks.Attributes["href"].Value,
    Text = lnks.InnerText
    foreach (HtmlNode node in doc.DocumentNode
    .SelectNodes("//a/@href | //img/@src"))
    metas.Add(node.Name);
    In the var linksOnPage i'm getting all the links but some of them not only links for example the first item i see:
    [0] = { Url = "/", Text = "&nbsp;&nbsp;&nbsp;&nbsp;" }
    Then the second item:
    [1] = { Url = "http://rotter.net/cgi-bin/forum/dcboard.cgi?az=login", Text = "התחבר" }
    Next i want to add another loop or variable that will contain only the links after im src for example:
    <img
    src="http://mysite.com"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    So to get only http://mysite.com
    So in the end i will have two Lists:
    First List will contain all links from the html file.
    Second List only links that are in img src

    Ok i'm using regex now and i can get the links i need:
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    string[] fall = File.ReadAllLines(filename);
    foreach (string hh in fall)
    if (hh.Contains("http://rotter.net") && hh.Contains("locked")||
    hh.Contains("locked_icon_general") ||
    hh.Contains("locked_icon_anchor") ||
    hh.Contains("icon_anchor") ||
    hh.Contains("locked_icon_fire") ||
    hh.Contains("locked_icon_sport")||
    hh.Contains("locked_icon_camera")||
    hh.Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(hh))
    metas.Add(m.Value);
    So now in the metas i have in this case two links.
    For example the first link is from this block in the file:
    The link i got is : http://rotter.net/forum/Images/hot_icon_anchor.gif
    And this is the right link from this block but now how do i get the text from this block and how i connect how do i know that this text belong to the link ? I need to add this text from this block to a new List. Before all that i counted on my own lines
    and got the text but that's a bad idea.
    I need somehow to get: שרשור תשדירי בחירות מרוכז:
    To get the text between the ToolTip',' and the second ',' but not from all the html file only in places of this two links i extracted.
    <TD ALIGN="RIGHT"
    VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','שרשור תשדירי בחירות מרוכז:','<u><span style=color:#000099;>כתב: menahem בתאריך: 03.03.15
    שעה: 08:51</span></u><br>1.<br>http://youtu.be/utUaqyiRkJ8<br><br><br>...'); Activate();"
    onmouseout="deActivate()"
    href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/hot_icon_anchor.gif"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    <FONT CLASS='text15bn'><FONT
    FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=187966&forum=scoops1"><b>
    <font color="red">שרשור תשדירי בחירות מרוכז:</b>
    </a></font></TD>

  • How can i get rid of the print dialog box when using api to print an html file

    i am using the systemshell.vi provided by labview the VI is working fine but it will open a dialog box for printer selection and properties. i would like to hide that dialog box and have it print to the default printer with the default properties

    ShellExec is part of lvwutil and merely calls a function in Shell32.dll. There is nothing about the function call that controls the display of the printer dialog. I think that what shell32.dll does when it prints (just like right clicking on the file) is print the file according to what is defined about that file type in Windows Folder Options. On my Win2K system, the print application is defined as "C:\Program Files\Microsoft Office\Office\msohtmed.exe" /p %1. If I remove the /p, then Word starts up and in order to print, I get a printer dialog when choosing Print from the File menu. So it seems like the printer dialog is entirely dependant on the application that does the printing. I get no dialog when I use the VI to print a .txt file. I
    nstead of using shell32, you might want to try some ActiveX method or property of an application like Internet Explorer that can open and print an html file.

  • I pulled the bookmarks html file off of my computer after it crashed, and am trying to get my old bookmarks into firefox. How does one do that?

    When my computer crashed, we managed to recover a bunch of the files and information from it. One of the files we pulled was the bookmarks.html from the firefox folder. The computer was running on Vista when it crashed, and I now have it running 7 Professional. The file is recorded as a Chrome html file on the new computer, and when I click on it, it pulls up a basic html page within Chrome or firefox that has links to the firefox website (kind of like a webpage version of the bookmarks folder from the toolbar, but without any of the bookmark adding capabilities). I'd like to get my old bookmarks loaded into firefox. Help?

    Firefox hasn't used the '''bookmarks.html''' file for storing bookmarks since the Firefox 2 versions, in 2008. Later versions use '''places.sqlite''' for bookmarks and history. What you have is the default file that Firefox uses on new installations and new Profiles, which has like 6 bookmarks.
    If you still have access to that old hard drive, see this for help: <br />
    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile

  • How do I get the SWF file to send a variable to HTML file

    I am new to flash and trying to figure out how this is working. I have a task to upgrade a web site. I have a map of ND with some cities on it. I needed to add a new city to the SWF which did not seem to be hard (asuming I did it correct). The action on all the buttons for each city look like this except the name after the # is the city selected.
    on (release)
        getURL("locations_info.html#minot", "location_content");
    In HTML code snip that controls this looked like this :
                          <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="627" height="400">
                            <param name="movie" value="flash/map.swf">
                            <param name="quality" value="high">
                            <embed src="flash/map.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="627" height="400"></embed>
                          </td>
                        </tr>
                        <tr>
                          <td align="left" valign="top"><IFRAME src="locations_info.html" name="location_content" width="627" height="190" scrolling="no" frameborder="0"></IFRAME></td>
                          </tr>
                      </table>                 
                      </td>
    snip from the locations_info.html file looks like:
      <tr>
        <td align="left" valign="top"><table width="687" border="0" cellspacing="0" cellpadding="10">
          <tr>
            <td align="left" valign="top"><p class="maintext12"> </p>
              <p class="maintext12"><strong><a name="minot"></a>Minot/Home Office</strong><br>
                408 20th Ave SW, Suite 101, Minot, N.D. 58701<br>
                Main line: (701) 852-5383<br>
                Toll Free: (800) 735-4955<br>
                Fax: (701) 852-6272<br>
                Office hours: Monday - Friday 8 a.m. to 5 p.m.</p>
              <p> </p>
    Can someone help me understand way when I run this from my system it should load and address information for the correct city from the locations_info.html file but it doesn't. Nothing shows up..
    Jeanne

    If all of the other getURL() directives in the movie use the same syntax for the named anchor link then that part should be OK. In the html document, locations_info, again, if all of the named anchors look like the one that you listed, then you may just need to clear your cache to get the new anchor to work.
    The a name="XXX" anchor is being depricated in some browsers. You can use id="XXX", or both, instead. Although if one works, they should all work.

Maybe you are looking for

  • Non central adapter engine & adapter monitoring

    Hi , we installed PI7.0 sp12,and can we see all the available adapter as a list in RWB and adapter monitoring if adapter engine installed as non central? And we will see Adapter engine under Integration server if AE is centran and under non-central a

  • Exporting Bank Files

    I am a system administrator in Windows and I am able to export my Bank File via the Payment Wizard in 2007A Patch 15 (uses BIS I beleive). I have a user who is a Super User in SAP, but a normal user in Windows. They have full read, write and delete t

  • How to calcualate prior year

    Hi All, If I select current year in a column promt, then I want to calculate prior year. For eg. I have List Box promt based on year column with values 2012, 2011, 2010, 2009, 2008 etc.. If I select any one year, lets say 2011, then I should automati

  • HANG on the halfway of internet software updating

    Hi, My new MacPro facing a Big problem.HANG on the halfway of software updating after system disc installed completely!!! Maybe you'll suggest me to re-install it again,unluckily,i've repeat and repeat the installation and then software updating as u

  • I forgot my security password for my apple ipod touch

    forgot my security passcode and now my apple ipod touch is locked and it tells me to sign into itunes..how do i unlock it now..