Git Product home page Git Product logo

Comments (7)

paoloromani avatar paoloromani commented on August 18, 2024

My solution:

DbfRecors.java
public Map<String, Object> toMap() throws ParseException {
Map<String, Object> map = new LinkedHashMap<String, Object>(getFields().size() * 2);

    for (DbfField f : getFields()) {
        String name = f.getName();
        switch (f.getType()) {

            case Character:
                map.put(name, getString(name));
                break;

            case Date:
                map.put(name, getDate(name));
                break;

            case Numeric:
                map.put(name, getBigDecimal(name));
                break;

            case Float:
                map.put(name, getBigDecimal(name));
                break;                    

            case Logical:
                map.put(name, getBoolean(name));
                break;

            case Integer:
                map.put(name, getInteger(name));
                break;
        }
    }

    return map;
}

meta.getFieldsStringRepresentation() = TARGET_FID,N,9,0|nummer,C,12,0|k_superfic,F,19,11|Nome_zone_,C,12,0

rec.toMap = {TARGET_FID=327284, nummer=315,k_superfic=23.897, Nome_zone_=RE

from jdbf.

tballison avatar tballison commented on August 18, 2024

Any chance you'd be willing to share your test file? We just added a dbf parser on Apache Tika and we need examples of Float fields.

from jdbf.

jhernancanom avatar jhernancanom commented on August 18, 2024

Hi, Paolo and friends.

I have similar interests: reading (and writing) DBF files. I am also having issues with reading (and writing) numeric fields (not exactly Float, but Double and Integer --as known in xBase languages--).

Specifically wih Float fields I am not having issues: I added routines to the original script and I am getting correct results: reading and writing them.

I consider that we could share info with this respect. I know the zorro language well.

Let me know how we can proceed. You can get me as jhernancanom.
I am in hotmail.

HERNAN CANO M
Systems Analyst

from jdbf.

tballison avatar tballison commented on August 18, 2024

Hi Hernan,
Any chance you could share a test file? We'd want to fix this over on Apache Tika as well. Thank you!

from jdbf.

iryndin avatar iryndin commented on August 18, 2024

@paoloromani Could you please share your DBF file ?

from jdbf.

jhernancanom avatar jhernancanom commented on August 18, 2024

Hi, friends.
I am attaching my sample DBF.

  1. The DBF is file aked by you (SAMPLE_2_DBF.txt, take off the TXT extension, and put DBF).
  2. The STR is the structure as Fox shows us (SAMPLE_2_.TXT).
  3. The PNG is an image about how Fox shows us.

Notes:
The file has the basic type of fields that an xBase engine manages: Character (that is to say String), Logical (that is to say Boolean), Numeric (both integers and reals--with decimals--), and Date.

I also have incorporated two Float fields according to your asking; one has decimals and another without decimals.
I wait this can help you.

I'll start with my needs.

The very basic field for numeric data in xBase is Numeric that can be defined to have decimals or not.
Later the xBase dialects add some more numerical types: Float, Double, Integer and Currency.

I have attached a .DOC file that shows some features of field types.
For example: Float is the same as Numeric. Integer is 4 bytes long when saved in a DBF file. If the precision of Double type and Float type is the same, and Double has a broad range, then it means that Double must be encrypted/converted to allocate correctly (and also for Integer type).

Data and Field Types.docx

sample_2_
SAMPLE_2_.TXT

SAMPLE_2_DBF.txt

Based on this I consider that our script should be correct: if you can get a Numeric value in your Java with getBigDecimal, that it could be used for getting a Float (Fox dialect).

If you need any more, you can write.

Thanks, friends.

HERNAN C

from jdbf.

iryndin avatar iryndin commented on August 18, 2024

@jhernancanom Thanks a lot, I started looking into it. Will put updates here.

from jdbf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.