About: MIDlet

An Entity of Type: software, from Named Graph: http://dbpedia.org, within Data Space: dbpedia.org

A MIDlet is an application that uses the Mobile Information Device Profile (MIDP) of the Connected Limited Device Configuration (CLDC) for the Java ME environment. Typical applications include games running on mobile devices and cell phones which have small graphical displays, simple numeric keypad interfaces and limited network access over HTTP. MIDlet can run on Android devices via the J2ME Loader emulator application.

Property Value
dbo:abstract
  • Un MIDlet és una aplicació Java creada per al perfil Mobile Information Device Profile (MIDP) que típicament s'executa en una telèfon mòbil o dispositiu encastat que suporti Java. Un MIDlet és una aplicació Java creada per treballar amb l'arquitectura Java ME, concretament amb la capa de configuració Connected Limited Device Configuration (CLDC) i el perfil Mobile Information Device Profile (MIDP). (ca)
  • Ein MIDlet ist eine Software für ein Mobiltelefon oder vergleichbares mobiles Gerät (Smartphone, Sensornetzknoten), welche in der Programmiersprache Java geschrieben ist und dem Mobile Information Device Profile (MIDP) entspricht. MIDP ist wiederum ein Teil der Java Platform Micro Edition (Java ME) und eines der Profile der Connected Limited Device Configuration CLDC. Mehrere MIDlets können zu einer MIDlet-Suite zusammengefasst werden, so dass sich die einzelnen MIDlets Ressourcen und Programmcode teilen können. Viele der existierenden kostenpflichtigen Spiele für Mobiltelefone sind MIDlets auf Embedded-Java-Basis. Die kostenlosen Anwendungen reichen von kleinen E-Book-Readern über Kalender- oder Telnet-Clienten bis hin zu einem BASIC-Interpreter. (de)
  • Un "MIDlet" es un programa desarrollado con el lenguaje de programación Java para dispositivos embebidos (que se dedican a una sola actividad), más específicamente para la máquina virtual Java Micro Edition (Java ME). Generalmente son juegos y aplicaciones que corren en un teléfono móvil. Está desarrollada bajo la especificación MIDP (Perfil para Información de Dispositivo Móvil). (es)
  • A MIDlet is an application that uses the Mobile Information Device Profile (MIDP) of the Connected Limited Device Configuration (CLDC) for the Java ME environment. Typical applications include games running on mobile devices and cell phones which have small graphical displays, simple numeric keypad interfaces and limited network access over HTTP. MIDlet can run on Android devices via the J2ME Loader emulator application. The .jad file describing a MIDlet suite is used to deploy the applications in one of two ways. Over the air (OTA) deployment involves uploading the .jad and .jar files to a Web server which is accessible by the device over HTTP. The user downloads the .jad file and installs the MIDlets they require. Local deployment requires that the MIDlet files be transferred to the device over a non-network connection (such as through Bluetooth or IrDa, and may involve device-specific software). Phones that support microSD cards can sometimes install .jar or .jad files that have been transferred to the memory card. (en)
  • Una MIDlet JAVA è un'applicazione creata per sistemi embedded, specificamente per i sistemi con installata una J2ME Virtual Machine. Queste applicazioni sono di solito giochi e programmi per i cellulari. (it)
  • Een MIDlet is een applicatie die alleen gebruikmaakt van de in de MIDP en CLDC J2ME-standaarden gedefinieerde APIs. MIDlets zijn bedoeld voor draagbare apparaten met een beperkte hoeveelheid geheugen en een lage schermresolutie zoals mobiele telefoons en eenvoudige PDAs. Doordat MIDlets in Java worden geschreven zijn ze platform-onafhankelijk. De term MIDlet is een samenstelling van de afkorting MID (Mobile Information Device) en het Engelse achtervoegsel -let (klein). Hiermee wordt aangesloten bij de termen applet en servlet. MIDlets worden gedistribueerd als JAR bestand met daarin: * een manifest bestand dat de inhoud van het JAR bestand beschrijft * de benodigde Java .class bestanden * overige benodigdheden, zoals plaatjes en geluidsbestanden Een JAR-bestand kan meerdere MIDLets bevatten. (nl)
  • MIDlet – aplikacja napisana w języku Java dla urządzeń obsługujących profil MIDP (czyli dla telefonów komórkowych i notatników elektronicznych PDA).MIDlety zazwyczaj występują w zbiorze zwanym zestawem MIDletów (ang. MIDlet Suite). Zestaw ten składa się z archiwum JAR (ang. Java ARchive) oraz pliku (ang. Java Archive Descriptor), który opisuje zestaw MIDletów. Aplikacja napisana na profilu MIDP, musi dziedziczyć po klasie MIDlet i musi zawierać następujące metody: * startApp * destroyApp * pauseApp Metody te są wywoływane przy zmianie stanu MIDleta, który może być: * aktywny * spauzowany * zniszczony Stan MIDleta może zostać zmieniony jakimś wydarzeniem np. przychodzącym połączeniem. Można też wywołać taki stan z kodu, wywołując metody: * notifyPaused * notifyDestroyed * resumeRequest (pl)
  • Мидлет (англ. MIDlet, от англ. MID «Mobile Information Device» и англ. -let «нечто маленькое») — приложение для профиля MIDP платформы Java ME. Примером мидлетов являются игры для мобильных телефонов. Приложения MIDP названы «мидлетами» по аналогии с терминами «апплет» и «сервлет». Основной файл дистрибутива мидлета имеет расширение jar. Кроме него, в дистрибутив может входить текстовый jad-файл, указывающий на месторасположение jar-файла и содержащий другие параметры. Мидлет может быть написан так, что без jad-файла его работа будет невозможна. Пример такой реализации — вынесение в jad-файл строковых ресурсов для упрощения их локализации. Мидлет должен удовлетворять следующим требованиям, чтобы его можно было запустить на мобильном телефоне: * Главный класс должен быть потомком класса javax.microedition.midlet.MIDlet. * Файлы классов должны быть обработаны (преверифицированы, от англ. preverification «предварительная проверка») утилитой preverifier. * Файлы классов и ресурсов должны быть упакованы в zip-архив с расширением jar (например, утилитой jar). * В некоторых случаях jar-файл должен быть подписан мобильным оператором. (ru)
  • MIDlet é um aplicativo em Java para dispositivos móveis, mais especificamente para a máquina virtual J2ME. Em geral são aplicações para serem executadas em celulares, como jogos entre outros. MIDlets irão (deverão) rodar em qualquer dispositivo que implemente J2ME Mobile Information Device Profile. Como todos os programas em Java, MIDlets são totalmente portáveis sendo feitos para serem executados em qualquer plataforma. Para escrever um MIDlet, pode-se obter o Sun's Wireless Toolkit do site do Java, o qual é disponível para diversas plataformas e é gratuito. Um MIDlet possui os seguintes requerimentos para ser executado em um telefone celular: * A classe principal precisa ser uma subclasse de javax.microedition.midlet.MIDlet * Um MIDlet precisa ser empacotado em um arquivo.jar (ex: usando a jar-tool) * O arquivo.jar precisa ser pré-verificado. (pt)
dbo:wikiPageID
  • 182368 (xsd:integer)
dbo:wikiPageLength
  • 2632 (xsd:nonNegativeInteger)
dbo:wikiPageRevisionID
  • 1091711331 (xsd:integer)
dbo:wikiPageWikiLink
dbp:wikiPageUsesTemplate
dcterms:subject
gold:hypernym
rdf:type
rdfs:comment
  • Un MIDlet és una aplicació Java creada per al perfil Mobile Information Device Profile (MIDP) que típicament s'executa en una telèfon mòbil o dispositiu encastat que suporti Java. Un MIDlet és una aplicació Java creada per treballar amb l'arquitectura Java ME, concretament amb la capa de configuració Connected Limited Device Configuration (CLDC) i el perfil Mobile Information Device Profile (MIDP). (ca)
  • Un "MIDlet" es un programa desarrollado con el lenguaje de programación Java para dispositivos embebidos (que se dedican a una sola actividad), más específicamente para la máquina virtual Java Micro Edition (Java ME). Generalmente son juegos y aplicaciones que corren en un teléfono móvil. Está desarrollada bajo la especificación MIDP (Perfil para Información de Dispositivo Móvil). (es)
  • Una MIDlet JAVA è un'applicazione creata per sistemi embedded, specificamente per i sistemi con installata una J2ME Virtual Machine. Queste applicazioni sono di solito giochi e programmi per i cellulari. (it)
  • Ein MIDlet ist eine Software für ein Mobiltelefon oder vergleichbares mobiles Gerät (Smartphone, Sensornetzknoten), welche in der Programmiersprache Java geschrieben ist und dem Mobile Information Device Profile (MIDP) entspricht. MIDP ist wiederum ein Teil der Java Platform Micro Edition (Java ME) und eines der Profile der Connected Limited Device Configuration CLDC. Mehrere MIDlets können zu einer MIDlet-Suite zusammengefasst werden, so dass sich die einzelnen MIDlets Ressourcen und Programmcode teilen können. (de)
  • A MIDlet is an application that uses the Mobile Information Device Profile (MIDP) of the Connected Limited Device Configuration (CLDC) for the Java ME environment. Typical applications include games running on mobile devices and cell phones which have small graphical displays, simple numeric keypad interfaces and limited network access over HTTP. MIDlet can run on Android devices via the J2ME Loader emulator application. (en)
  • Een MIDlet is een applicatie die alleen gebruikmaakt van de in de MIDP en CLDC J2ME-standaarden gedefinieerde APIs. MIDlets zijn bedoeld voor draagbare apparaten met een beperkte hoeveelheid geheugen en een lage schermresolutie zoals mobiele telefoons en eenvoudige PDAs. Doordat MIDlets in Java worden geschreven zijn ze platform-onafhankelijk. De term MIDlet is een samenstelling van de afkorting MID (Mobile Information Device) en het Engelse achtervoegsel -let (klein). Hiermee wordt aangesloten bij de termen applet en servlet. MIDlets worden gedistribueerd als JAR bestand met daarin: (nl)
  • MIDlet – aplikacja napisana w języku Java dla urządzeń obsługujących profil MIDP (czyli dla telefonów komórkowych i notatników elektronicznych PDA).MIDlety zazwyczaj występują w zbiorze zwanym zestawem MIDletów (ang. MIDlet Suite). Zestaw ten składa się z archiwum JAR (ang. Java ARchive) oraz pliku (ang. Java Archive Descriptor), który opisuje zestaw MIDletów. Aplikacja napisana na profilu MIDP, musi dziedziczyć po klasie MIDlet i musi zawierać następujące metody: * startApp * destroyApp * pauseApp Metody te są wywoływane przy zmianie stanu MIDleta, który może być: (pl)
  • MIDlet é um aplicativo em Java para dispositivos móveis, mais especificamente para a máquina virtual J2ME. Em geral são aplicações para serem executadas em celulares, como jogos entre outros. MIDlets irão (deverão) rodar em qualquer dispositivo que implemente J2ME Mobile Information Device Profile. Como todos os programas em Java, MIDlets são totalmente portáveis sendo feitos para serem executados em qualquer plataforma. Para escrever um MIDlet, pode-se obter o Sun's Wireless Toolkit do site do Java, o qual é disponível para diversas plataformas e é gratuito. (pt)
  • Мидлет (англ. MIDlet, от англ. MID «Mobile Information Device» и англ. -let «нечто маленькое») — приложение для профиля MIDP платформы Java ME. Примером мидлетов являются игры для мобильных телефонов. Приложения MIDP названы «мидлетами» по аналогии с терминами «апплет» и «сервлет». Мидлет должен удовлетворять следующим требованиям, чтобы его можно было запустить на мобильном телефоне: (ru)
rdfs:label
  • MIDlet (ca)
  • MIDlet (de)
  • MIDlet (es)
  • MIDlet (it)
  • MIDlet (en)
  • MIDlet (nl)
  • MIDlet (pl)
  • MIDlet (pt)
  • Мидлет (ru)
owl:sameAs
prov:wasDerivedFrom
foaf:isPrimaryTopicOf
is dbo:wikiPageRedirects of
is dbo:wikiPageWikiLink of
is foaf:primaryTopic of
Powered by OpenLink Virtuoso    This material is Open Knowledge     W3C Semantic Web Technology     This material is Open Knowledge    Valid XHTML + RDFa
This content was extracted from Wikipedia and is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License