- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Where are best places to ask Scala-related Java questions?
Fri, 2009-08-14, 21:27
Given that so much of Scala depends on underlying Java libraries, it's
obvious that any Scala user will have some Java questions. (For
example, I have some questions about edge cases with java.io.File.)
Would people care to suggest good Java fora? (That's right I hope,
fora and not forums). The thought of trying to get answers off of a
general Java mailing list is one I don't wish to think about :-)
Thanks,
Ken
Fri, 2009-08-14, 22:17
#2
Re: Where are best places to ask Scala-related Java questions?
> (I apologize if this tactic is quite well known to you and you are in
> fact banging against a tremendously obscure and arcane feature of the
> File API. I did not mean to insult anyone's intelligence. )
>
Don't worry, I know so little it's hard to insult my intelligence :-).
In this case,
I'm wondering about those weird and wonderful situations that arise when
one has transferred files from say, a MS system, and some of those
files have
characters in them that are Bad Voodoo on a UNIX system. So I posted the
question to Javaranch, thanks for the tip.
Ken
Mon, 2009-08-17, 10:37
#3
Re: Where are best places to ask Scala-related Java questions?
The #scala IRC channel on freenode. I would hope they are not deemed
off-topic here also.
2009/8/14 Kenneth McDonald :
> Given that so much of Scala depends on underlying Java libraries, it's
> obvious that any Scala user will have some Java questions. (For example, I
> have some questions about edge cases with java.io.File.) Would people care
> to suggest good Java fora? (That's right I hope, fora and not forums). The
> thought of trying to get answers off of a general Java mailing list is one I
> don't wish to think about :-)
>
> Thanks,
> Ken
>
>
Mon, 2009-08-17, 10:47
#4
Re: Where are best places to ask Scala-related Java questions?
StackOver flow is pretty good these days...
Cheers,
Antony Stubbs,
sharca.com
On 14/08/2009, at 10:27 PM, Kenneth McDonald wrote:
> Given that so much of Scala depends on underlying Java libraries,
> it's obvious that any Scala user will have some Java questions. (For
> example, I have some questions about edge cases with java.io.File.)
> Would people care to suggest good Java fora? (That's right I hope,
> fora and not forums). The thought of trying to get answers off of a
> general Java mailing list is one I don't wish to think about :-)
>
> Thanks,
> Ken
>
I find javaranch.com to be pretty handy.
Also, my Java code is positively littered with:
/* testing feature XYZ */ public static void main (String [] args)
throws Exception { java.io.File f = new File("blah"); if (f.XYZ)
...... System.out.println("Got result: " + ... }
In most cases I leave the main in the source code so that the next
person who needs to muck around can see why I used a specific API the
way I did.
(I apologize if this tactic is quite well known to you and you are in
fact banging against a tremendously obscure and arcane feature of the
File API. I did not mean to insult anyone's intelligence. )
-Mike
On Fri, Aug 14, 2009 at 4:27 PM, Kenneth
McDonald wrote:
> Given that so much of Scala depends on underlying Java libraries, it's
> obvious that any Scala user will have some Java questions. (For example, I
> have some questions about edge cases with java.io.File.) Would people care
> to suggest good Java fora? (That's right I hope, fora and not forums). The
> thought of trying to get answers off of a general Java mailing list is one I
> don't wish to think about :-)
>
> Thanks,
> Ken
>
>