I have a source code written in Java that I would like to run on Windows RT / Surface 2. So far the tablet cannot run JVM. Is it possible to use J# to transform at least part of the code to run it under CRL (possibly with rewriting GUI part)? Will it be faster than start from zero?
J# as an alternative to Java on Windows RT?
265 Views Asked by user2341923 At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in WINDOWS-RUNTIME
- Is it possible to get user's Microsoft Account (with permission) via code?
- Unable to resolve property '%1' while processing properties for Uid '%0'
- How to check if Windows device is phone or tablet/pc?
- WinRT Extract Thumbnail from RAW image format
- How many items can we put in winrt listview
- How to debug missing dlls on Windows 10
- Where do I call an async method from?
- converting string to a double in visual c++ by parsing
- WinJS Issues | Windows 8.1 and Windows Phone
- Create Page custom animations in Windows Phone 8.1 (Windows Runtime)
- WinRT control to render XAML UIElement
- Gapless looping in Background Media Player for Windows Phone 8.1
- How to update a progress bar based on a form in WinRT?
- data binding property of a other control to a style while animating it
- ScaleTransform.ScaleY UIElement without keeping space reserved
Related Questions in CLR
- Windows Error Reporting doesn't generate mini dump for a .NET 4 application sometimes
- Where exactly is .NET Runtime (CLR), JIT Compiler located?
- SQL CLR Exception when trying to convert PDF
- Obtain non-explicit field offset
- Test if a given object reference is valid
- msclr is not being used
- Mixed mode assembly is built against version xxxx
- “CLR detected an Invalid Program” when compiling a constructor for List<T>
- Set only second argument type in generic method
- Where would the code produced by the JIT would reside
- .NET Framework compatibility issue
- Using the new source provided by microsoft would it be possible to create a variant of the CLR?
- Deadlocked in w3wp for a WCF website. Unable to find source of Issue
- At what point in time does an instance of a C# class with a generic Type parameter lose awareness of its "generic"-ness?
- Type '<Module>' from assembly ... contains more methods than the current implementation allows
Related Questions in SURFACE
- Microsoft tabletop interaction with android OS
- Treating 2d array data as pixels defining a shape - is it possible to create an inside and a surface?
- Displaying surface with non-rectangular boundary
- Surface Reconstruction from Cocone algorithms
- How to I combine closed and open poly surfaces in Rhino Mac?
- matplotlib 3D surface - gaps / holes in surface
- exporting svg image from matlab surface plot
- Color Banding Playing Live Raw H.264 Stream In Android
- Android MediaCodec h.264 Decoding Surface Mode Color Banding
- How to make a better surface 3dplot with discontinuities in data in R?
- Determine Is the keyboard folded back or not on Surface pro
- Scilab : Same colorbar for two subplots
- Scilab : add legend for surface plot
- Android Surfaces Look alike Layout in pre-Lollipop
- J# as an alternative to Java on Windows RT?
Related Questions in J#
- In the J language, the verb `over` doesn't work
- How to start a J console (in the programming language J, not Java)
- After installing J, I get several error messages about DBusMenuExporterPrivate
- Installing JQt IDE for the J language, getting error
- Is it possible to write a J program that uses monadic or dyadic forms of verbs based on execution-time values?
- J and L-systems
- How to apply verb sequentially to vector and each single element of another vector in J
- How to get a nice output when calling jconsole?
- How are J/K/APL classified in terms of common paradigms?
- What is the function of the 'assert' keyword in the J programming language?
- Define a verb Centigrade in J programming
- How to "for loop" in J
- J How to get equation to multiply by itself?
- Any other ways to emulate `tr` in J?
- What's the most efficient way to implement Haskell's foldl1 in J?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I don't believe so. It requires some trickiness to use J# with .Net 4.0 and none of the tricks I've seen will work in a Windows Runtime app. Even if you could compile J# to the .Net Core framework, it probably wouldn't buy you much since you wouldn't have the java namespaces available.
It will probably be faster to convert from Java to C#, with the main difficulty being the differences in library code rather than language based. MSDN has a topic Move from Android to WinRT that may help with that if you are familiar with Android programming.