Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
public class Window extends javax.swing.JFrame {
public Window() {
super("Prueba de JFrame");
setPreferredSize(new java.awt.Dimension(640,480));
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
getContentPane().setBackground(new java.awt.Color(255,0,0));
pack();
}
public static void main(String[] args) {
new Window().setVisible(true);
}
}
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class Main */
#ifndef _Included_Main
#define _Included_Main
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: Main
* Method: getShortPathName
* Signature: (Ljava/lang/String;)Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_Main_getShortPathName
(JNIEnv *, jobject, jstring);
#ifdef __cplusplus
}
#endif
#endif
#include <jni.h>
#include <stdio.h>
#include <windows.h>
#include "Main.h"
JNIEXPORT jstring JNICALL Java_Main_getShortPathName
(JNIEnv *env, jobject o, jstring thePath) {
long lResult = 0;
WCHAR buff[255];
const jchar *utfPath = (*env)->GetStringChars(env,thePath,NULL);
lResult = GetShortPathNameW(utfPath,buff,255);
(*env)->ReleaseStringChars(env,thePath,utfPath);
return (*env)->NewString(env,buff,lResult);
}
public class Main {
private native String getShortPathName(String thePath);
public static void main(String[] args) {
Main app = new Main();
System.out.println(app.getShortPathName("C:\\Documents and Settings");
}
static {
System.loadLibrary("api");
}
}
gcc -c -I"aqui el path de tu java\include" -I"aqui el path de tu java\include\win32" -o api.o Main.c
gcc -shared -o api.dll api.o api.def
EXPORTS
Java_Main_getShortPathName