Re: netbeans decompiler

2020-12-27 Thread Roberto Bottoni

Hi,

yes I see the bytecode..but I would like to view the code.. as a 
decompiler do.. for example jd-gui (http://java-decompiler.github.io/)



Il 24-12-2020 20:05 Laszlo Kishalmi ha scritto:

BTW What do you mean decompiler?

If you would like to see the generated bytecode, NetBeans has a
built-in one, though It can't be invoked directly, so double click on
a class file could result:

- Opening the corresponding source file
- Opening a "decompiled" class with method, member declarations and
bytecode
- Nothing. This could be a bug, happens especially on modular java
projects.
On 12/24/20 9:22 AM, Alonso Del Arte wrote:


I mostly use IntelliJ for Scala, and I've been getting curious about
how Scala compiles to bytecode, so it's good to know IntelliJ has a
"decompiler." Paths for class files in IntelliJ projects are a bit
longer than in NetBeans projects. Nothing prohibitive, it's just
annoying.

How hard would it be to make this plugin? I'd take it up if I didn't
already have too many in-progress projects.

Al

On Thu, Dec 24, 2020 at 2:36 AM Som Lima 
wrote:

Community edition  Intelli J has a built in java decompiler.

On Thu, 24 Dec 2020, 07:31 ,  wrote:
Hi,
yes it seems for NB 8.2.. is it strange that NB do no t have an
integrated decompiler.. why?

R.

Da: Alonso Del Arte 
Inviato: giovedì 24 dicembre 2020 02:16
A: r.bott...@afterbit.com
Oggetto: Re: netbeans decompiler

Google led me to the debug javac plugin
plugins.<http://netbeans.org/plugin/50148/debugging-for-javac>, but
that's for NetBeans 8.0. Plus it seems to do more than what you need
it to do.

Me, personally, I just go on the command line to
build\classes\packagename and invoke javap -c.

Al

On Wed, Dec 23, 2020 at 3:49 AM <mailto:r.bott...@afterbit.com>
wrote:
Hello, in some cases i need to decompile java class files .. is
there a
decompiler for NB (to integrate to) ?

Roberto

--
Questa email è stata esaminata alla ricerca di virus da AVG.
http://www.avg.com



-

To unsubscribe, e-mail: mailto:users-unsubscr...@netbeans.apache.org
For additional commands, e-mail:
mailto:users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

--
Alonso del Arte
Author at https://www.smashwords.com/profile/view/AlonsoDelarte
Musician at http://www.reverbnation.com/alonsodelarte
--
Questo messaggio è stato analizzato con Libraesva ESG ed è
risultato non infetto.
This message has been checked by Libraesva ESG and is believed to be
clean.



-

To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


--
Alonso del Arte
Author at SmashWords.com [1]
Musician at ReverbNation.com [2] --
 Questo messaggio è stato analizzato con Libraesva ESG ed è
risultato non infetto.
This message has been checked by Libraesva ESG and is believed to be
clean.

Links:
--
[1] https://www.smashwords.com/profile/view/AlonsoDelarte
[2] http://www.reverbnation.com/alonsodelarte


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: netbeans decompiler

2020-12-24 Thread Alonso Del Arte
For example, for Hello World, you might see something like this:

  public static void main(java.lang.String[]);
Code:
   0: getstatic #7  // Field
java/lang/System.out:Ljava/io/PrintStream;
   3: ldc   #13 // String Hello, world!
   5: invokevirtual #15 // Method
java/io/PrintStream.println:(Ljava/lang/String;)V
   8: return

On Thu, Dec 24, 2020 at 2:13 PM Som Lima  wrote:

> "BTW What do you mean decompiler? "
>
> If you click the .class file in the project tree in Intelli J community
> Edition.  The text editor opens up containing  with the source code  of the
> .class file.
>
>
>
> On Thu, 24 Dec 2020, 19:05 Laszlo Kishalmi, 
> wrote:
>
>> BTW What do you mean decompiler?
>>
>> If you would like to see the generated bytecode, NetBeans has a built-in
>> one, though It can't be invoked directly, so double click on a class file
>> could result:
>>
>> - Opening the corresponding source file
>> - Opening a "decompiled" class with method, member declarations and
>> bytecode
>> - Nothing. This could be a bug, happens especially on modular java
>> projects.
>> On 12/24/20 9:22 AM, Alonso Del Arte wrote:
>>
>> I mostly use IntelliJ for Scala, and I've been getting curious about how
>> Scala compiles to bytecode, so it's good to know IntelliJ has a
>> "decompiler." Paths for class files in IntelliJ projects are a bit longer
>> than in NetBeans projects. Nothing prohibitive, it's just annoying.
>>
>> How hard would it be to make this plugin? I'd take it up if I didn't
>> already have too many in-progress projects.
>>
>> Al
>>
>> On Thu, Dec 24, 2020 at 2:36 AM Som Lima  wrote:
>>
>>> Community edition  Intelli J has a built in java decompiler.
>>>
>>>
>>>
>>> On Thu, 24 Dec 2020, 07:31 ,  wrote:
>>>
>>>> Hi,
>>>> yes it seems for NB 8.2.. is it strange that NB do no t have an
>>>> integrated decompiler.. why?
>>>>
>>>> R.
>>>>
>>>>
>>>> Da: Alonso Del Arte 
>>>> Inviato: giovedì 24 dicembre 2020 02:16
>>>> A: r.bott...@afterbit.com
>>>> Oggetto: Re: netbeans decompiler
>>>>
>>>> Google led me to the debug javac plugin plugins.<
>>>> http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for
>>>> NetBeans 8.0. Plus it seems to do more than what you need it to do.
>>>>
>>>> Me, personally, I just go on the command line to
>>>> build\classes\packagename and invoke javap -c.
>>>>
>>>> Al
>>>>
>>>> On Wed, Dec 23, 2020 at 3:49 AM <mailto:r.bott...@afterbit.com> wrote:
>>>> Hello, in some cases i need to decompile java class files .. is there a
>>>> decompiler for NB (to integrate to) ?
>>>>
>>>> Roberto
>>>>
>>>>
>>>>
>>>> --
>>>> Questa email è stata esaminata alla ricerca di virus da AVG.
>>>> http://www.avg.com
>>>>
>>>>
>>>> -
>>>> To unsubscribe, e-mail: mailto:users-unsubscr...@netbeans.apache.org
>>>> For additional commands, e-mail: mailto:users-h...@netbeans.apache.org
>>>>
>>>> For further information about the NetBeans mailing lists, visit:
>>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>>
>>>>
>>>> --
>>>> Alonso del Arte
>>>> Author at https://www.smashwords.com/profile/view/AlonsoDelarte
>>>> Musician at http://www.reverbnation.com/alonsodelarte
>>>> --
>>>> Questo messaggio è stato analizzato con Libraesva ESG ed è risultato
>>>> non infetto.
>>>> This message has been checked by Libraesva ESG and is believed to be
>>>> clean.
>>>>
>>>>
>>>> -
>>>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>>>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>>>
>>>> For further information about the NetBeans mailing lists, visit:
>>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>>
>>>>
>>
>> --
>> Alonso del Arte
>> Author at SmashWords.com
>> <https://www.smashwords.com/profile/view/AlonsoDelarte>
>> Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>
>>
>>

-- 
Alonso del Arte
Author at SmashWords.com
<https://www.smashwords.com/profile/view/AlonsoDelarte>
Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>


Re: netbeans decompiler

2020-12-24 Thread Som Lima
"BTW What do you mean decompiler? "

If you click the .class file in the project tree in Intelli J community
Edition.  The text editor opens up containing  with the source code  of the
.class file.



On Thu, 24 Dec 2020, 19:05 Laszlo Kishalmi, 
wrote:

> BTW What do you mean decompiler?
>
> If you would like to see the generated bytecode, NetBeans has a built-in
> one, though It can't be invoked directly, so double click on a class file
> could result:
>
> - Opening the corresponding source file
> - Opening a "decompiled" class with method, member declarations and
> bytecode
> - Nothing. This could be a bug, happens especially on modular java
> projects.
> On 12/24/20 9:22 AM, Alonso Del Arte wrote:
>
> I mostly use IntelliJ for Scala, and I've been getting curious about how
> Scala compiles to bytecode, so it's good to know IntelliJ has a
> "decompiler." Paths for class files in IntelliJ projects are a bit longer
> than in NetBeans projects. Nothing prohibitive, it's just annoying.
>
> How hard would it be to make this plugin? I'd take it up if I didn't
> already have too many in-progress projects.
>
> Al
>
> On Thu, Dec 24, 2020 at 2:36 AM Som Lima  wrote:
>
>> Community edition  Intelli J has a built in java decompiler.
>>
>>
>>
>> On Thu, 24 Dec 2020, 07:31 ,  wrote:
>>
>>> Hi,
>>> yes it seems for NB 8.2.. is it strange that NB do no t have an
>>> integrated decompiler.. why?
>>>
>>> R.
>>>
>>>
>>> Da: Alonso Del Arte 
>>> Inviato: giovedì 24 dicembre 2020 02:16
>>> A: r.bott...@afterbit.com
>>> Oggetto: Re: netbeans decompiler
>>>
>>> Google led me to the debug javac plugin plugins.<
>>> http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for
>>> NetBeans 8.0. Plus it seems to do more than what you need it to do.
>>>
>>> Me, personally, I just go on the command line to
>>> build\classes\packagename and invoke javap -c.
>>>
>>> Al
>>>
>>> On Wed, Dec 23, 2020 at 3:49 AM <mailto:r.bott...@afterbit.com> wrote:
>>> Hello, in some cases i need to decompile java class files .. is there a
>>> decompiler for NB (to integrate to) ?
>>>
>>> Roberto
>>>
>>>
>>>
>>> --
>>> Questa email è stata esaminata alla ricerca di virus da AVG.
>>> http://www.avg.com
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: mailto:users-unsubscr...@netbeans.apache.org
>>> For additional commands, e-mail: mailto:users-h...@netbeans.apache.org
>>>
>>> For further information about the NetBeans mailing lists, visit:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>
>>>
>>> --
>>> Alonso del Arte
>>> Author at https://www.smashwords.com/profile/view/AlonsoDelarte
>>> Musician at http://www.reverbnation.com/alonsodelarte
>>> --
>>> Questo messaggio è stato analizzato con Libraesva ESG ed è risultato non
>>> infetto.
>>> This message has been checked by Libraesva ESG and is believed to be
>>> clean.
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>>
>>> For further information about the NetBeans mailing lists, visit:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>
>>>
>
> --
> Alonso del Arte
> Author at SmashWords.com
> <https://www.smashwords.com/profile/view/AlonsoDelarte>
> Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>
>
>


Re: netbeans decompiler

2020-12-24 Thread Laszlo Kishalmi

BTW What do you mean decompiler?

If you would like to see the generated bytecode, NetBeans has a built-in 
one, though It can't be invoked directly, so double click on a class 
file could result:


- Opening the corresponding source file
- Opening a "decompiled" class with method, member declarations and bytecode
- Nothing. This could be a bug, happens especially on modular java projects.

On 12/24/20 9:22 AM, Alonso Del Arte wrote:
I mostly use IntelliJ for Scala, and I've been getting curious about 
how Scala compiles to bytecode, so it's good to know IntelliJ has a 
"decompiler." Paths for class files in IntelliJ projects are a bit 
longer than in NetBeans projects. Nothing prohibitive, it's just annoying.


How hard would it be to make this plugin? I'd take it up if I didn't 
already have too many in-progress projects.


Al

On Thu, Dec 24, 2020 at 2:36 AM Som Lima <mailto:somplastic...@gmail.com>> wrote:


Community edition  Intelli J has a built in java decompiler.



On Thu, 24 Dec 2020, 07:31 , mailto:r.bott...@afterbit.com>> wrote:

Hi,
yes it seems for NB 8.2.. is it strange that NB do no t have
an integrated decompiler.. why?

R.


Da: Alonso Del Arte mailto:alonso.dela...@gmail.com>>
Inviato: giovedì 24 dicembre 2020 02:16
A: r.bott...@afterbit.com <mailto:r.bott...@afterbit.com>
Oggetto: Re: netbeans decompiler

Google led me to the debug javac plugin
plugins.<http://netbeans.org/plugin/50148/debugging-for-javac>,
but that's for NetBeans 8.0. Plus it seems to do more than
what you need it to do.

Me, personally, I just go on the command line to
build\classes\packagename and invoke javap -c.

Al

On Wed, Dec 23, 2020 at 3:49 AM <mailto:r.bott...@afterbit.com
<mailto:r.bott...@afterbit.com>> wrote:
Hello, in some cases i need to decompile java class files ..
is there a
decompiler for NB (to integrate to) ?

Roberto



-- 
Questa email è stata esaminata alla ricerca di virus da AVG.

http://www.avg.com


-
To unsubscribe, e-mail:
mailto:users-unsubscr...@netbeans.apache.org
<mailto:users-unsubscr...@netbeans.apache.org>
For additional commands, e-mail:
mailto:users-h...@netbeans.apache.org
<mailto:users-h...@netbeans.apache.org>

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


-- 
Alonso del Arte

Author at https://www.smashwords.com/profile/view/AlonsoDelarte
Musician at http://www.reverbnation.com/alonsodelarte
-- 
Questo messaggio è stato analizzato con Libraesva ESG ed è

risultato non infetto.
This message has been checked by Libraesva ESG and is believed
to be clean.


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
<mailto:users-unsubscr...@netbeans.apache.org>
For additional commands, e-mail:
users-h...@netbeans.apache.org
<mailto:users-h...@netbeans.apache.org>

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



--
Alonso del Arte
Author at SmashWords.com 
<https://www.smashwords.com/profile/view/AlonsoDelarte>

Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>


Re: netbeans decompiler

2020-12-24 Thread Alonso Del Arte
I mostly use IntelliJ for Scala, and I've been getting curious about how
Scala compiles to bytecode, so it's good to know IntelliJ has a
"decompiler." Paths for class files in IntelliJ projects are a bit longer
than in NetBeans projects. Nothing prohibitive, it's just annoying.

How hard would it be to make this plugin? I'd take it up if I didn't
already have too many in-progress projects.

Al

On Thu, Dec 24, 2020 at 2:36 AM Som Lima  wrote:

> Community edition  Intelli J has a built in java decompiler.
>
>
>
> On Thu, 24 Dec 2020, 07:31 ,  wrote:
>
>> Hi,
>> yes it seems for NB 8.2.. is it strange that NB do no t have an
>> integrated decompiler.. why?
>>
>> R.
>>
>>
>> Da: Alonso Del Arte 
>> Inviato: giovedì 24 dicembre 2020 02:16
>> A: r.bott...@afterbit.com
>> Oggetto: Re: netbeans decompiler
>>
>> Google led me to the debug javac plugin plugins.<
>> http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for
>> NetBeans 8.0. Plus it seems to do more than what you need it to do.
>>
>> Me, personally, I just go on the command line to
>> build\classes\packagename and invoke javap -c.
>>
>> Al
>>
>> On Wed, Dec 23, 2020 at 3:49 AM <mailto:r.bott...@afterbit.com> wrote:
>> Hello, in some cases i need to decompile java class files .. is there a
>> decompiler for NB (to integrate to) ?
>>
>> Roberto
>>
>>
>>
>> --
>> Questa email è stata esaminata alla ricerca di virus da AVG.
>> http://www.avg.com
>>
>>
>> -
>> To unsubscribe, e-mail: mailto:users-unsubscr...@netbeans.apache.org
>> For additional commands, e-mail: mailto:users-h...@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>
>> --
>> Alonso del Arte
>> Author at https://www.smashwords.com/profile/view/AlonsoDelarte
>> Musician at http://www.reverbnation.com/alonsodelarte
>> --
>> Questo messaggio è stato analizzato con Libraesva ESG ed è risultato non
>> infetto.
>> This message has been checked by Libraesva ESG and is believed to be
>> clean.
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>

-- 
Alonso del Arte
Author at SmashWords.com
<https://www.smashwords.com/profile/view/AlonsoDelarte>
Musician at ReverbNation.com <http://www.reverbnation.com/alonsodelarte>


Re: netbeans decompiler

2020-12-23 Thread Som Lima
Community edition  Intelli J has a built in java decompiler.



On Thu, 24 Dec 2020, 07:31 ,  wrote:

> Hi,
> yes it seems for NB 8.2.. is it strange that NB do no t have an integrated
> decompiler.. why?
>
> R.
>
>
> Da: Alonso Del Arte 
> Inviato: giovedì 24 dicembre 2020 02:16
> A: r.bott...@afterbit.com
> Oggetto: Re: netbeans decompiler
>
> Google led me to the debug javac plugin plugins.<
> http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for
> NetBeans 8.0. Plus it seems to do more than what you need it to do.
>
> Me, personally, I just go on the command line to build\classes\packagename
> and invoke javap -c.
>
> Al
>
> On Wed, Dec 23, 2020 at 3:49 AM <mailto:r.bott...@afterbit.com> wrote:
> Hello, in some cases i need to decompile java class files .. is there a
> decompiler for NB (to integrate to) ?
>
> Roberto
>
>
>
> --
> Questa email è stata esaminata alla ricerca di virus da AVG.
> http://www.avg.com
>
>
> -
> To unsubscribe, e-mail: mailto:users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: mailto:users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
> --
> Alonso del Arte
> Author at https://www.smashwords.com/profile/view/AlonsoDelarte
> Musician at http://www.reverbnation.com/alonsodelarte
> --
> Questo messaggio è stato analizzato con Libraesva ESG ed è risultato non
> infetto.
> This message has been checked by Libraesva ESG and is believed to be
> clean.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


R: netbeans decompiler

2020-12-23 Thread r.bottoni
Hi, 
yes it seems for NB 8.2.. is it strange that NB do no t have an integrated 
decompiler.. why? 

R.


Da: Alonso Del Arte  
Inviato: giovedì 24 dicembre 2020 02:16
A: r.bott...@afterbit.com
Oggetto: Re: netbeans decompiler

Google led me to the debug javac plugin 
plugins.<http://netbeans.org/plugin/50148/debugging-for-javac>, but that's for 
NetBeans 8.0. Plus it seems to do more than what you need it to do.

Me, personally, I just go on the command line to build\classes\packagename and 
invoke javap -c.

Al

On Wed, Dec 23, 2020 at 3:49 AM <mailto:r.bott...@afterbit.com> wrote:
Hello, in some cases i need to decompile java class files .. is there a
decompiler for NB (to integrate to) ?

Roberto



-- 
Questa email è stata esaminata alla ricerca di virus da AVG.
http://www.avg.com


-
To unsubscribe, e-mail: mailto:users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: mailto:users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


-- 
Alonso del Arte
Author at https://www.smashwords.com/profile/view/AlonsoDelarte
Musician at http://www.reverbnation.com/alonsodelarte
-- 
Questo messaggio è stato analizzato con Libraesva ESG ed è risultato non 
infetto.
This message has been checked by Libraesva ESG and is believed to be clean. 


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



netbeans decompiler

2020-12-23 Thread r.bottoni
Hello, in some cases i need to decompile java class files .. is there a
decompiler for NB (to integrate to) ?

Roberto



--
Questa email è stata esaminata alla ricerca di virus da AVG.
http://www.avg.com


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists