0

I have tried to create java classes in eclipse like:

asd.java and ASD.java but this gives error and lead to me rename file.. also same error with windows 7 ultimate file system.

I have looked to same question in stackoverflow: File paths in Windows environment case sensitive?

this one has good answers but I tried them not worked for me... could you suggest any thing about it. I need to implement it with eclipse urgently..

Thank you.

Community
  • 1
  • 1
boy
  • 187
  • 1
  • 9

2 Answers2

0

the file name must be the name of the class, if it be public.

exemple

// File asd.java (not work !) public class ASD {}

// File ASD.java (work !) public class ASD {}

Reference

Community
  • 1
  • 1
  • (public final class Bp) saved as Bp.java, and other one (public final class bP) saved as bP.java, but file system and eclipse do not allow that, How do I fix this... – boy Feb 04 '15 at 07:56
0

I have find solution by using ubuntu operating system. It does support naturally case sensetive, so eclipse works just fine.

boy
  • 187
  • 1
  • 9