all groups > vj# > june 2004
J# Browser Controls v1.1b Official Release
Posted by briankel NO[at]SPAM online.microsoft.com at 6/30/2004 10:07:20 PM
J# Browser Controls v1.1b has been officially release and is available here:
http://msdn.microsoft.com/vjsharp/browsercontrols
J# Browser Controls provide the ability to migrate Java applet source code
to run on the .NET Framework. Migrated applets have full access to the
functionality in th... more >>
how do i list directory files with j++?
Posted by chris at 6/29/2004 4:25:01 PM
I've tried using list(), but i get told that it is not part of the File class. am i using the wrong library? or something else stupid. i would appreciate some help, thanks
chris... more >>
Performance of String allocation
Posted by fsnow NO[at]SPAM fsnow.com at 6/28/2004 11:47:50 AM
I have an application that allocates a large number of strings using
the String(byte[] bytes, int offset, int length) constructor. A simple
test case shows that string allocation is between one and two orders
of magnitude slower in J# relative to JVM 1.4.
Here's the code:
int dataLength = 2... more >>
Does J# support JNI?
Posted by Peter Steele at 6/26/2004 1:40:51 PM
I'm going to be writing a DLL in VS C++ that will be used by the Java team
here. They're using Sun Java and I'll structure the DLL so that the normal
JNI will work for them. I'd like to test my DLL though in J# but a simple
example seems to indicate J# may not support it. For example, I could not... more >>
Sending an object through MSMQ
Posted by jay at 6/25/2004 5:36:20 PM
Hello,
I get the following error when trying to send an object to a Message Queue:
An unhandled exception of type 'System.InvalidOperationException' occurred
in system.xml.dll
Additional information: There was an error reflecting 'object'
The object contains protected fields of other object... more >>
JavaBeans
Posted by DotNetJunkies User at 6/24/2004 7:46:40 AM
Does anyone know if it is possible to use JbImp to convert JavaBeans into .NET resource?
---
Posted using Wimdows.net NntpNews Component -
Post Made from http://www.DotNetJunkies.com/newsgroups Our newsgroup engine supports Post Alerts, Ratings, and Searching.... more >>
Is it "UTF-8" or "UTF8"?
Posted by TheGG at 6/20/2004 8:27:02 PM
I am porting code from Java to .NET, and one thing that came up was that
String.getBytes( "UTF-8" )
works in Java (JDK 1.4 anyway) but not in J# (throws an unsupported
encoding exception) - however
String.getBytes( "UTF8" )
works in both worlds. I'm more curious than anything el... more >>
jbimp version resource
Posted by jkwalnut at 6/18/2004 12:48:01 PM
Is is possible to embed a version number into the dll resulting from jbimp with a resource file?
If so, what steps are necessary?... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
jbimp version resource
Posted by jkwalnut at 6/18/2004 12:46:02 PM
Can you use a resource file with jbimp to include a version number in the resulting dll?
If so, what steps are necessary to create a resource file?... more >>
J# app and J# Browser Control behave differently
Posted by Jerry at 6/15/2004 3:10:41 PM
I have an applet that sends data to a web server via the
query string of the url (HTTP GET). When the query string
data contains a backslash (\) it is sent to the web server
differently depending on whether the code is running as a
browser control or a standalone application. If the code
... more >>
J# compilers returns Cannot declare type 'java.lang.Object' error
Posted by (m.david NO[at]SPAM mdptws.com) at 6/12/2004 7:52:22 PM
Hi,
Ive got existing Java source code that compiles just fine with a number of Java compilers but for some reason I get "VJS1282: Cannot declare type 'java.lang.Object' error" when compiling in J#. Can someone give me a clue as to whats going on? The error is being found at position 1,0 ("p" of... more >>
Accessing MySQL with J# .net
Posted by Inspired at 6/12/2004 5:15:01 PM
Hi, can anyone tell me how to access a MySQL database within a J# .net environment? Basically I have a MySQL server running on localhost, and I want to be able to write a custom program to query (etc.) it. I want to write this program using J# .net.
Thanks in advance for any help!
... more >>
Help in JAVA datastructure definition
Posted by johnpremi at 6/11/2004 3:18:01 AM
Hi there,
I am a newbie to Java programming and would like to get some feedback on how I can proceed with a problem I have at hand. I have to maintain the objects information in the memory for a SITE. SITE has side id, site name, and a site will be related to devices (one or more devices). Devices ... more >>
Release of version 1.1b from beta - Date?
Posted by Lane Friesen at 6/6/2004 5:58:42 PM
Does anyone know when the final code for version 1.1b will
be released?... more >>
/target is 'exe' but no suitable main method was found in compilation
Posted by Mary at 6/5/2004 7:56:01 PM
Can someone tell me what this error means in J# /target is 'exe' but no suitable main method was found in compilation... more >>
MoneyCount
Posted by Janie at 6/4/2004 11:06:03 PM
Can anyone tell me why this code doesn't work right on some number
import java.io.*;
class countmoney
public static void main (String[] args) throws IOException
BufferedReader stdin = new BufferedReade
(new InputStreamReader(System.in))
// declares three integer
doubl... more >>
Class.FromType(Type) is not thread-safe
Posted by Dennis Homann at 6/3/2004 2:56:02 AM
Hi everyone
the method FromType of java.lang.Class, which converts a System.Type to a java.lang.Class is not thread-safe. This is a problem because you cannot always control when it will be called. Apparently, the runtime calls it to load classes. In those cases, you can get exceptions like this ... more >>
Java calling Office API ?
Posted by Oleg Konovalov at 6/2/2004 3:16:07 PM
Hi,
I am writing a Java application which among many other things
has to call some MS Office [PowerPoint] internal methods,
which only seems to be possible from either VBA or C#.
Can anybody suggest a way of Java calling VBA or C# ?
I do know how to call an executable from Java
or Java... more >>
|